pub struct GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
DomainField: Field,
PW: PackedField<Scalar: ExtensionField<DomainField>>,
C: CompositionPoly<PW>,{
pub composition: &'a C,
pub domain_points: &'a [DomainField],
pub evaluation_domain: &'a InterpolationDomain<DomainField>,
pub degree: usize,
pub eq_ind: &'a MultilinearExtensionBorrowed<'a, PW>,
pub gkr_challenge: PW::Scalar,
}
Fields§
§composition: &'a C
§domain_points: &'a [DomainField]
§evaluation_domain: &'a InterpolationDomain<DomainField>
§degree: usize
§eq_ind: &'a MultilinearExtensionBorrowed<'a, PW>
§gkr_challenge: PW::Scalar
Trait Implementations§
source§impl<'a, PW, DomainField, C> AbstractSumcheckEvaluator<PW> for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
DomainField: Field,
PW: PackedExtension<DomainField, Scalar: ExtensionField<DomainField>>,
C: CompositionPoly<PW>,
impl<'a, PW, DomainField, C> AbstractSumcheckEvaluator<PW> for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
DomainField: Field,
PW: PackedExtension<DomainField, Scalar: ExtensionField<DomainField>>,
C: CompositionPoly<PW>,
type VertexState = ()
source§fn n_round_evals(&self) -> usize
fn n_round_evals(&self) -> usize
The number of points to evaluate at.
source§fn process_vertex(
&self,
i: usize,
_vertex_state: Self::VertexState,
evals_0: &[PW],
evals_1: &[PW],
evals_z: &mut [PW],
round_evals: &mut [PW],
)
fn process_vertex( &self, i: usize, _vertex_state: Self::VertexState, evals_0: &[PW], evals_1: &[PW], evals_z: &mut [PW], round_evals: &mut [PW], )
Process and update the round evaluations with the evaluations at a hypercube vertex. Read more
Auto Trait Implementations§
impl<'a, PW, DomainField, C> Freeze for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
<PW as PackedField>::Scalar: Sized + Freeze,
<<PW as PackedField>::Scalar as WithUnderlier>::Underlier: Sized,
<DomainField as WithUnderlier>::Underlier: Sized,
impl<'a, PW, DomainField, C> RefUnwindSafe for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
<PW as PackedField>::Scalar: Sized + RefUnwindSafe,
<<PW as PackedField>::Scalar as WithUnderlier>::Underlier: Sized,
<DomainField as WithUnderlier>::Underlier: Sized,
C: RefUnwindSafe,
DomainField: RefUnwindSafe,
PW: RefUnwindSafe,
impl<'a, PW, DomainField, C> Send for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
<PW as PackedField>::Scalar: Sized,
<<PW as PackedField>::Scalar as WithUnderlier>::Underlier: Sized,
<DomainField as WithUnderlier>::Underlier: Sized,
impl<'a, PW, DomainField, C> Sync for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
<PW as PackedField>::Scalar: Sized,
<<PW as PackedField>::Scalar as WithUnderlier>::Underlier: Sized,
<DomainField as WithUnderlier>::Underlier: Sized,
impl<'a, PW, DomainField, C> Unpin for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
<PW as PackedField>::Scalar: Sized + Unpin,
<<PW as PackedField>::Scalar as WithUnderlier>::Underlier: Sized,
<DomainField as WithUnderlier>::Underlier: Sized,
impl<'a, PW, DomainField, C> UnwindSafe for GkrSumcheckLaterRoundEvaluator<'a, PW, DomainField, C>where
<PW as PackedField>::Scalar: Sized + UnwindSafe,
<<PW as PackedField>::Scalar as WithUnderlier>::Underlier: Sized,
<DomainField as WithUnderlier>::Underlier: Sized,
C: RefUnwindSafe,
DomainField: RefUnwindSafe,
PW: RefUnwindSafe,
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