Skip to content

Commit

Permalink
added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasxia01 committed Mar 25, 2024
1 parent 8575640 commit 24178bf
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ std::shared_ptr<typename ProverInstances::Instance> ProtoGalaxyProver_<ProverIns
combined_relation_parameters.lookup_grand_product_delta.evaluate(challenge),
};
next_accumulator->relation_parameters = folded_relation_parameters;
// Derive the prover polynomials from the proving key polynomials since we only fold the unshifted polynomials. This
// is extremely cheap since we only call .share() and .shifted() polynomial functions. We need the folded prover
// polynomials for the decider.
next_accumulator->prover_polynomials = ProverPolynomials(next_accumulator->proving_key);
return next_accumulator;
}
Expand Down

0 comments on commit 24178bf

Please sign in to comment.