Skip to content

Commit

Permalink
Kimchi: make clippy happy - remove unused enumeration
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems committed Sep 4, 2024
1 parent 3d34b59 commit 56e0b30
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kimchi/src/lagrange_basis_evaluations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ impl<F: FftField> LagrangeBasisEvaluations<F> {
let stride = p.evals.len() / self.evals[0].len();
self.evals
.iter()
.enumerate()
.map(|(j, evals)| {
.map(|evals| {
let mut result = F::zero();
for (i, e) in evals.iter().enumerate() {
if !p.evals[stride * i].is_zero() {
Expand Down

0 comments on commit 56e0b30

Please sign in to comment.