Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Sep 23, 2024
1 parent d37d862 commit d806af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipa-multipoint/src/committer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl DefaultCommitter {
impl Committer for DefaultCommitter {
fn commit_lagrange(&self, evaluations: &[Fr]) -> Element {
if evaluations.len() <= 5 {
return self.precomp_first_five.mul(&evaluations);
return self.precomp_first_five.mul(evaluations);
}
// Preliminary benchmarks indicate that the parallel version is faster
// for vectors of length 64 or more
Expand Down

0 comments on commit d806af8

Please sign in to comment.