Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasgoergens committed Dec 12, 2024
1 parent 1e52d68 commit 4c597d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpcs/src/sum_check/classic/coeff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl<E: ExtensionField> ClassicSumCheckRoundMessage<E> for Coefficients<E> {
}

fn sum(&self) -> E {
self[..].iter().sum()
self[0] + self[..].iter().sum::<E>()
}

fn evaluate(&self, _: &Self::Auxiliary, challenge: &E) -> E {
Expand Down

0 comments on commit 4c597d9

Please sign in to comment.