pub struct ZerocheckClaim<F: Field, Composition> { /* private fields */ }
Implementations§
source§impl<F: Field, Composition> ZerocheckClaim<F, Composition>
impl<F: Field, Composition> ZerocheckClaim<F, Composition>
source§impl<F: Field, Composition> ZerocheckClaim<F, Composition>where
Composition: CompositionPolyOS<F>,
impl<F: Field, Composition> ZerocheckClaim<F, Composition>where
Composition: CompositionPolyOS<F>,
pub fn new( n_vars: usize, n_multilinears: usize, composite_zeros: Vec<Composition>, ) -> Result<Self, Error>
sourcepub fn max_individual_degree(&self) -> usize
pub fn max_individual_degree(&self) -> usize
Returns the maximum individual degree of all composite polynomials.
pub fn composite_zeros(&self) -> &[Composition]
Trait Implementations§
Auto Trait Implementations§
impl<F, Composition> Freeze for ZerocheckClaim<F, Composition>
impl<F, Composition> RefUnwindSafe for ZerocheckClaim<F, Composition>
impl<F, Composition> Send for ZerocheckClaim<F, Composition>
impl<F, Composition> Sync for ZerocheckClaim<F, Composition>
impl<F, Composition> Unpin for ZerocheckClaim<F, Composition>
impl<F, Composition> UnwindSafe for ZerocheckClaim<F, Composition>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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