Skip to content

Commit

Permalink
Merge pull request #58 from AztecProtocol/jm/pg-avoid-redundant-compu…
Browse files Browse the repository at this point in the history
…tation-port

Port of PR #5844 from aztec-package
  • Loading branch information
jeanmon authored May 6, 2024
2 parents fe16461 + 4b0d962 commit 9351738
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bberg/src/flavor_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,14 @@ fn create_polynomial_views(first_poly: &String) -> String {
template <size_t LENGTH>
using ProverUnivariates = AllEntities<bb::Univariate<FF, LENGTH>>;
/**
* @brief A container for univariates used during Protogalaxy folding and sumcheck with some of the computation
* optmistically ignored
* @details During folding and sumcheck, the prover evaluates the relations on these univariates.
*/
template <size_t LENGTH, size_t SKIP_COUNT>
using OptimisedProverUnivariates = AllEntities<bb::Univariate<FF, LENGTH, 0, SKIP_COUNT>>;
/**
* @brief A container for univariates produced during the hot loop in sumcheck.
*/
Expand Down

0 comments on commit 9351738

Please sign in to comment.