pub struct GkrSumcheckWitness<P, C, M>{
pub poly: MultilinearComposite<P, C, M>,
pub current_layer: M,
}
Expand description
Witness for the GKR Sumcheck protocol
The prover will prove a claim of the following flavor
- $\sum_{x \in {0, 1}^n} f(x) * \mathsf{eq}(x, r) = s$.
Fields§
§poly: MultilinearComposite<P, C, M>
The $n$-variate multilinear composite polynomial $f(x)$
current_layer: M
The $n$-variate multilinear witness $R_0(x)$ of the values of the evaluated GKR circuit at the current layer. This is useful advice to the honest prover as it will equal the multilinear witness of the boolean hypercube evaluations of $f(x)$ This fact allows for less computation in round 0.
Specifically $\forall x \in {0, 1}^n, f(x) = R_0(x)$
Trait Implementations§
source§impl<P, C, M> AbstractSumcheckWitness<P> for GkrSumcheckWitness<P, C, M>
impl<P, C, M> AbstractSumcheckWitness<P> for GkrSumcheckWitness<P, C, M>
source§type MultilinearId = (usize, usize)
type MultilinearId = (usize, usize)
Some identifier of a multilinear witness that is used to deduplicate the witness index when folding.
type Composition = C
type Multilinear = M
fn composition(&self) -> &C
source§fn multilinears(
&self,
seq_id: usize,
_claim_multilinear_ids: &[(usize, usize)],
) -> Result<impl IntoIterator<Item = ((usize, usize), M)>, AbstractSumcheckError>
fn multilinears( &self, seq_id: usize, _claim_multilinear_ids: &[(usize, usize)], ) -> Result<impl IntoIterator<Item = ((usize, usize), M)>, AbstractSumcheckError>
Returns a copy/clone of multilinear witnesses of the composite sumcheck witness. Read more
source§fn multilinears_ref(
&self,
seq_id: usize,
_claim_multilinear_ids: &[Self::MultilinearId],
) -> Result<impl Iterator<Item = (Self::MultilinearId, &Self::Multilinear)>, AbstractSumcheckError>
fn multilinears_ref( &self, seq_id: usize, _claim_multilinear_ids: &[Self::MultilinearId], ) -> Result<impl Iterator<Item = (Self::MultilinearId, &Self::Multilinear)>, AbstractSumcheckError>
Reference to multilinear witnesses of the composite sumcheck witness. Read more
source§impl<P, C, M> Clone for GkrSumcheckWitness<P, C, M>where
P: PackedField + Clone,
C: CompositionPoly<P> + Clone,
M: MultilinearPoly<P> + Clone + Send + Sync + Clone,
impl<P, C, M> Clone for GkrSumcheckWitness<P, C, M>where
P: PackedField + Clone,
C: CompositionPoly<P> + Clone,
M: MultilinearPoly<P> + Clone + Send + Sync + Clone,
source§fn clone(&self) -> GkrSumcheckWitness<P, C, M>
fn clone(&self) -> GkrSumcheckWitness<P, C, M>
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<P, C, M> Debug for GkrSumcheckWitness<P, C, M>where
P: PackedField + Debug,
C: CompositionPoly<P> + Debug,
M: MultilinearPoly<P> + Clone + Send + Sync + Debug,
impl<P, C, M> Debug for GkrSumcheckWitness<P, C, M>where
P: PackedField + Debug,
C: CompositionPoly<P> + Debug,
M: MultilinearPoly<P> + Clone + Send + Sync + Debug,
Auto Trait Implementations§
impl<P, C, M> Freeze for GkrSumcheckWitness<P, C, M>
impl<P, C, M> RefUnwindSafe for GkrSumcheckWitness<P, C, M>
impl<P, C, M> Send for GkrSumcheckWitness<P, C, M>
impl<P, C, M> Sync for GkrSumcheckWitness<P, C, M>
impl<P, C, M> Unpin for GkrSumcheckWitness<P, C, M>
impl<P, C, M> UnwindSafe for GkrSumcheckWitness<P, C, M>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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