pub struct LayerClaim<F: Field> {
pub eval_point: Vec<F>,
pub eval: F,
}
Expand description
LayerClaim is a claim about the evaluation of the kth layer-multilinear at a specific evaluation point
Notation:
- The kth layer-multilinear is the multilinear polynomial whose evaluations are the intermediate values of the kth layer of the evaluated product circuit.
Fields§
§eval_point: Vec<F>
§eval: F
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for LayerClaim<F>
impl<F> RefUnwindSafe for LayerClaim<F>
impl<F> Send for LayerClaim<F>
impl<F> Sync for LayerClaim<F>
impl<F> Unpin for LayerClaim<F>
impl<F> UnwindSafe for LayerClaim<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
§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