Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
npwardberkeley committed Sep 26, 2023
1 parent a365390 commit f652088
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/gates/subtraction_u32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,16 +201,15 @@ impl<F: RichField + Extendable<D>, const D: usize> Gate<F, D> 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,
i,
_phantom: PhantomData,
}
.adapter(),
);
g
)
})
.collect()
}
Expand Down

0 comments on commit f652088

Please sign in to comment.