Browse Source

cleanup

main
Nicholas Ward 2 years ago
parent
commit
f652088bc3
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      src/gates/subtraction_u32.rs

+ 2
- 3
src/gates/subtraction_u32.rs

@ -201,7 +201,7 @@ impl, const D: usize> Gate for U32Subtraction
fn generators(&self, row: usize, _local_constants: &[F]) -> Vec<WitnessGeneratorRef<F, D>> {
(0..self.num_ops)
.map(|i| {
let g = WitnessGeneratorRef::new(
WitnessGeneratorRef::new(
U32SubtractionGenerator {
gate: *self,
row,
@ -209,8 +209,7 @@ impl, const D: usize> Gate for U32Subtraction
_phantom: PhantomData,
}
.adapter(),
);
g
)
})
.collect()
}

Loading…
Cancel
Save