pub struct ProverState<F> {
pub eval_point: Vec<F>,
}Expand description
Prover state after the multi-point evaluation protocol for one constraint family.
Fields§
§eval_point: Vec<F>The combined evaluation point r_0 produced by the sumcheck
(lifted into this family’s field — the underlying integer is shared
across all families).
Trait Implementations§
Source§impl<F: Clone> Clone for ProverState<F>
impl<F: Clone> Clone for ProverState<F>
Source§fn clone(&self) -> ProverState<F>
fn clone(&self) -> ProverState<F>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<F> Freeze for ProverState<F>
impl<F> RefUnwindSafe for ProverState<F>where
F: RefUnwindSafe,
impl<F> Send for ProverState<F>where
F: Send,
impl<F> Sync for ProverState<F>where
F: Sync,
impl<F> Unpin for ProverState<F>where
F: Unpin,
impl<F> UnsafeUnpin for ProverState<F>
impl<F> UnwindSafe for ProverState<F>where
F: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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