diff --git a/fish/benches/find_locations.rs b/fish/benches/find_locations.rs index 10757ee..3ba2c3e 100644 --- a/fish/benches/find_locations.rs +++ b/fish/benches/find_locations.rs @@ -68,7 +68,7 @@ fn benchmark(c: &mut Criterion) { c.bench_with_input( BenchmarkId::from_parameter(i), &(MATRIX[i], QUEUE[i]), - |b, (matrix, queue)| b.iter(|| find_locations(*matrix, *queue)), + |b, (matrix, queue)| b.iter(|| find_locations(matrix, *queue)), ); } c.finish(); diff --git a/fish/benches/think.rs b/fish/benches/think.rs index 917890a..fd67e58 100644 --- a/fish/benches/think.rs +++ b/fish/benches/think.rs @@ -70,7 +70,7 @@ fn benchmark(c: &mut Criterion) { c.bench_with_input( BenchmarkId::from_parameter(i), &(ITERS, Weights::default(), MATRIX[i], QUEUE[i]), - |b, (i, w, m, q)| b.iter(|| think(*i, w, *m, *q)), + |b, (i, w, m, q)| b.iter(|| think(*i, w, m, *q)), ); } c.finish();