pub trait AbstractSumcheckClaim<F: Field> {
// Required methods
fn n_vars(&self) -> usize;
fn max_individual_degree(&self) -> usize;
fn sum(&self) -> F;
}
Expand description
A sumcheck protocol claim.
A claim implicitly refers to a multivariate polynomial with a number of variables $\nu$, where the degree of each individual variable is bounded by $d$.
Required Methods§
sourcefn n_vars(&self) -> usize
fn n_vars(&self) -> usize
Returns the number of variables $\nu$ of the multivariate polynomial.
sourcefn max_individual_degree(&self) -> usize
fn max_individual_degree(&self) -> usize
Returns the maximum individual degree $d$ of all variables.