pub struct SumcheckPrismProof<EF> {
pub sum_claim: EF,
pub s_0: UnivariatePoly<EF>,
pub round_polys_eval: Vec<Vec<EF>>,
pub eval_claim: EF,
}Fields§
§sum_claim: EF§s_0: UnivariatePoly<EF>The univariate polynomial s_0 in coefficient form.
round_polys_eval: Vec<Vec<EF>>for each hypercube round, the evaluations of univariate polynomial s_round at {1, ..., deg(s_round)}. See SumcheckCubeProof for details.
eval_claim: EFFinal evaluation claim of the polynomial at the random vector r
Auto Trait Implementations§
impl<EF> Freeze for SumcheckPrismProof<EF>where
EF: Freeze,
impl<EF> RefUnwindSafe for SumcheckPrismProof<EF>where
EF: RefUnwindSafe,
impl<EF> Send for SumcheckPrismProof<EF>where
EF: Send,
impl<EF> Sync for SumcheckPrismProof<EF>where
EF: Sync,
impl<EF> Unpin for SumcheckPrismProof<EF>where
EF: Unpin,
impl<EF> UnsafeUnpin for SumcheckPrismProof<EF>where
EF: UnsafeUnpin,
impl<EF> UnwindSafe for SumcheckPrismProof<EF>where
EF: 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§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