We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f72e5e commit 9b0e20dCopy full SHA for 9b0e20d
patronus-sca/src/rewrite.rs
@@ -33,7 +33,10 @@ pub fn backwards_sub(
33
println!("XOR/AND: {xor_and_pairs:?}");
34
35
let same_input = find_expr_with_same_inputs(ctx, gate_level_expr);
36
- println!("SAME INPUT: {same_input:?}");
+ println!("Expressions that have the same input:");
37
+ for (a, b) in same_input {
38
+ println!("{:?} and {:?}", &ctx[a], &ctx[b]);
39
+ }
40
41
// empirically, it looks like we should not use a stack
42
let mut todo: VecDeque<_> = todo.into();
0 commit comments