Skip to content

Commit

Permalink
Made DomainEvaluationAccumulator fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
jarnesino committed Sep 25, 2024
1 parent c2b603e commit 6f2d3f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/prover/src/core/air/accumulation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ impl PointEvaluationAccumulator {
/// Accumulates evaluations of u_i(P), each at an evaluation domain of the size of that polynomial.
/// Computes the coefficients of f(P).
pub struct DomainEvaluationAccumulator<B: Backend> {
random_coeff_powers: Vec<SecureField>,
pub random_coeff_powers: Vec<SecureField>,
/// Accumulated evaluations for each log_size.
/// Each `sub_accumulation` holds the sum over all columns i of that log_size, of
/// `evaluation_i * alpha^(N - 1 - i)`
/// where `N` is the total number of evaluations.
sub_accumulations: Vec<Option<SecureColumnByCoords<B>>>,
pub sub_accumulations: Vec<Option<SecureColumnByCoords<B>>>,
}

impl<B: Backend> DomainEvaluationAccumulator<B> {
Expand Down

0 comments on commit 6f2d3f4

Please sign in to comment.