pub struct BoolVerifierSubclaim<F: PrimeField> {
pub bit_slice_evals: Vec<F>,
pub evaluation_point: Vec<F>,
}Expand description
Subclaim emitted by BooleanityChecker::finalize_verifier.
Carries the (now-validated against the sumcheck residue)
bit_slice_evals at the shared multi-degree sumcheck point r*. The
protocol-layer caller threads these as additional up_evals into
crate::multipoint_eval::MultipointEval, whose final consistency
check at r_0 is discharged against the coefficients of the existing
lifted_evals polynomials.
Fields§
§bit_slice_evals: Vec<F>Bit-slice MLE evaluations at r*, in (j-major, i-minor) order.
evaluation_point: Vec<F>Shared evaluation point r* from the multi-degree sumcheck.
Trait Implementations§
Source§impl<F: Clone + PrimeField> Clone for BoolVerifierSubclaim<F>
impl<F: Clone + PrimeField> Clone for BoolVerifierSubclaim<F>
Source§fn clone(&self) -> BoolVerifierSubclaim<F>
fn clone(&self) -> BoolVerifierSubclaim<F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<F> Freeze for BoolVerifierSubclaim<F>
impl<F> RefUnwindSafe for BoolVerifierSubclaim<F>where
F: RefUnwindSafe,
impl<F> Send for BoolVerifierSubclaim<F>
impl<F> Sync for BoolVerifierSubclaim<F>
impl<F> Unpin for BoolVerifierSubclaim<F>where
F: Unpin,
impl<F> UnsafeUnpin for BoolVerifierSubclaim<F>
impl<F> UnwindSafe for BoolVerifierSubclaim<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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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