pub struct BoolVerifierAncillary<F: PrimeField> {
pub gamma_powers: Vec<F>,
pub delta_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§
§gamma_powers: Vec<F>Powers of the bit-slice batching challenge:
[1, gamma, ..., gamma^{D-1}].
delta_powers: Vec<F>Powers of the column batching challenge:
[1, delta, ..., delta^{N-1}].
zerocheck_point: Vec<F>The zerocheck point r sampled before the multi-degree sumcheck.
num_wit_bin_cols: usizeNumber of witness binary-poly 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>
impl<F> Sync for BoolVerifierAncillary<F>
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