Skip to content

Commit

Permalink
fix clippy redundant closure
Browse files Browse the repository at this point in the history
  • Loading branch information
jotabulacios committed Nov 29, 2024
1 parent 8ad2490 commit 456c4fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion math/benches/fields/babybear.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ pub fn babybear_extension_ops_benchmarks_p3(c: &mut Criterion) {
let input_sizes = [1, 10, 100, 1000, 10000, 100000, 1000000];
let input: Vec<Vec<(EF4, EF4)>> = input_sizes
.into_iter()
.map(|size| rand_babybear_fp4_elements_p3(size))
.map(rand_babybear_fp4_elements_p3)
.collect::<Vec<_>>();

let mut group = c.benchmark_group("BabyBear Fp4 operations using Plonky3");
Expand Down

0 comments on commit 456c4fa

Please sign in to comment.