pub struct PIOPSumcheckClaim<F: Field> {
pub n_vars: usize,
pub committed: usize,
pub transparent: usize,
pub sum: F,
}
Expand description
A sumcheck claim that can be processed by the PIOP compiler.
These are a specific form of sumcheck claims over products of a committed polynomial and a transparent polynomial, referencing by index into external vectors.
Fields§
§n_vars: usize
Number of variables of the multivariate polynomial the sumcheck claim is about.
committed: usize
Index of the committed multilinear.
transparent: usize
Index of the transparent multilinear.
sum: F
Claimed sum of the inner product of the hypercube evaluations of the committed and transparent polynomials.
Trait Implementations§
Source§impl<F: Clone + Field> Clone for PIOPSumcheckClaim<F>
impl<F: Clone + Field> Clone for PIOPSumcheckClaim<F>
Source§fn clone(&self) -> PIOPSumcheckClaim<F>
fn clone(&self) -> PIOPSumcheckClaim<F>
Returns a copy 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 moreimpl<F: Eq + Field> Eq for PIOPSumcheckClaim<F>
impl<F: Field> StructuralPartialEq for PIOPSumcheckClaim<F>
Auto Trait Implementations§
impl<F> Freeze for PIOPSumcheckClaim<F>
impl<F> RefUnwindSafe for PIOPSumcheckClaim<F>
impl<F> Send for PIOPSumcheckClaim<F>
impl<F> Sync for PIOPSumcheckClaim<F>
impl<F> Unpin for PIOPSumcheckClaim<F>
impl<F> UnwindSafe for PIOPSumcheckClaim<F>
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,
§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