pub struct BoolVerifierSubclaim<F> {
pub bit_slice_evals: Vec<F>,
}Expand description
Subclaim emitted by BooleanityChecker::finalize_verifier.
Carries the (sumcheck-residue-validated) bit-slice evaluations at the shared multi-degree sumcheck point $r^\star$. The protocol-layer caller squeezes $\alpha’$ from the transcript (after this struct is produced) and uses it together with these values to append one extra multipoint-eval column (and up-eval $c’_j$) per witness binary-poly column — see the module-level docs.
Fields§
§bit_slice_evals: Vec<F>Bit-slice MLE evaluations at r*, in (j-major, i-minor) order.
Trait Implementations§
Source§impl<F: Clone> Clone for BoolVerifierSubclaim<F>
impl<F: Clone> 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 (const: unstable) · 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>where
F: Send,
impl<F> Sync for BoolVerifierSubclaim<F>where
F: Sync,
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