Skip to content

Commit

Permalink
fix: after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Al-Kindi-0 committed Sep 26, 2024
1 parent f8649f5 commit 9b0bf25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 9 additions & 1 deletion sumcheck/benches/sum_check_plain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ fn sum_check_plain(c: &mut Criterion) {
|((claim, evaluation_point, r_batch, p, q, eq), transcript)| {
let mut eq = eq;
let mut transcript = transcript;
sumcheck_prove_plain(claim, r_batch, p, q, &mut eq, &mut transcript)
sumcheck_prove_plain(
claim,
&evaluation_point,
r_batch,
p,
q,
&mut eq,
&mut transcript,
)
},
BatchSize::SmallInput,
)
Expand Down
3 changes: 1 addition & 2 deletions sumcheck/src/prover/high_degree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -537,12 +537,11 @@ fn sumcheck_round<E: FieldElement>(
vec![E::ZERO; num_periodic],
vec![E::ZERO; num_periodic],
vec![E::ZERO; num_periodic],
vec![E::ZERO; evaluator.max_degree() - 1],
vec![E::ZERO; evaluator.get_num_fractions()],
vec![E::ZERO; evaluator.get_num_fractions()],
vec![E::ZERO; num_mls],
vec![E::ZERO; num_periodic],
vec![E::ZERO; evaluator.max_degree()],
vec![E::ZERO; evaluator.max_degree() - 1],
)
},
|(
Expand Down

0 comments on commit 9b0bf25

Please sign in to comment.