pub struct BoolVerifierAncillary<F> {
pub alpha_powers: Vec<F>,
pub zerocheck_point: Vec<F>,
pub num_wit_bin_cols: usize,
pub bit_width: usize,
pub num_vars: usize,
}Expand description
Ancillary data produced by BooleanityChecker::prepare_verifier and
consumed by BooleanityChecker::finalize_verifier.
Fields§
§alpha_powers: Vec<F>Powers of the single batching challenge over the flat
(j-major, i-minor) index: [1, alpha, ..., alpha^{N*D - 1}].
zerocheck_point: Vec<F>The zerocheck point r sampled before the multi-degree sumcheck.
num_wit_bin_cols: usizeNumber of binary-poly booleanity target columns (N).
bit_width: usizeBit-width of each binary-poly coefficient cell (D).
num_vars: usizeNumber of variables (for sanity-checking the shared point length).
Auto Trait Implementations§
impl<F> Freeze for BoolVerifierAncillary<F>
impl<F> RefUnwindSafe for BoolVerifierAncillary<F>where
F: RefUnwindSafe,
impl<F> Send for BoolVerifierAncillary<F>where
F: Send,
impl<F> Sync for BoolVerifierAncillary<F>where
F: Sync,
impl<F> Unpin for BoolVerifierAncillary<F>where
F: Unpin,
impl<F> UnsafeUnpin for BoolVerifierAncillary<F>
impl<F> UnwindSafe for BoolVerifierAncillary<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