Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
siq1 committed Nov 19, 2024
1 parent 5018fe8 commit 43d7f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expander_compiler/src/circuit/ir/dest/mul_fanout_limit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ impl<C: Config> RootCircuitRelaxed<C> {

let mut circuits = HashMap::new();
for (id, circuit) in self.circuits.iter() {
circuits.insert(id.clone(), circuit.solve_mul_fanout_limit(limit));
circuits.insert(*id, circuit.solve_mul_fanout_limit(limit));
}
RootCircuitRelaxed {
circuits,
Expand Down

0 comments on commit 43d7f45

Please sign in to comment.