diff --git a/src/gadgets/permutation.rs b/src/gadgets/permutation.rs index 6d8e7d6d..740d73dd 100644 --- a/src/gadgets/permutation.rs +++ b/src/gadgets/permutation.rs @@ -345,8 +345,16 @@ impl SimpleGenerator for PermutationGenera vals }; - let a_values = self.a.iter().map(|chunk| wire_chunk_to_vals(*chunk)).collect(); - let b_values = self.b.iter().map(|chunk| wire_chunk_to_vals(*chunk)).collect(); + let a_values = self + .a + .iter() + .map(|chunk| wire_chunk_to_vals(*chunk)) + .collect(); + let b_values = self + .b + .iter() + .map(|chunk| wire_chunk_to_vals(*chunk)) + .collect(); route( a_values, b_values,