pub struct CprVerifierAncillary<F: PrimeField> {
pub folding_challenge_powers: Vec<F>,
pub ic_evaluation_point: Vec<F>,
pub num_vars: usize,
}Expand description
Ancillary data produced by prepare_verifier and consumed by
finalize_verifier. Holds state that bridges the pre-sumcheck and
post-sumcheck halves of the CPR verifier.
Fields§
§folding_challenge_powers: Vec<F>Powers of the folding challenge α: [1, α, α², …, α^{k-1}].
ic_evaluation_point: Vec<F>Evaluation point from the ideal check subclaim (for eq_r computation).
num_vars: usizeNumber of variables (for selector computation).
Auto Trait Implementations§
impl<F> Freeze for CprVerifierAncillary<F>
impl<F> RefUnwindSafe for CprVerifierAncillary<F>where
F: RefUnwindSafe,
impl<F> Send for CprVerifierAncillary<F>
impl<F> Sync for CprVerifierAncillary<F>
impl<F> Unpin for CprVerifierAncillary<F>where
F: Unpin,
impl<F> UnsafeUnpin for CprVerifierAncillary<F>
impl<F> UnwindSafe for CprVerifierAncillary<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more