pub struct ExpClaim<F: Field> {
pub eval_point: Vec<F>,
pub eval: F,
pub exponent_bit_width: usize,
pub n_vars: usize,
pub uses_dynamic_base: bool,
}
Expand description
ExpClaim is a claim about the evaluation of the first layer-multilinear at a specific evaluation point.
Fields§
§eval_point: Vec<F>
§eval: F
§exponent_bit_width: usize
The number of bits used to represent the integer.
n_vars: usize
§uses_dynamic_base: bool
true
: Indicates that the dynamic base is usedfalse
: Indicates that the constant base is used.
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for ExpClaim<F>
impl<F> RefUnwindSafe for ExpClaim<F>
impl<F> Send for ExpClaim<F>
impl<F> Sync for ExpClaim<F>
impl<F> Unpin for ExpClaim<F>
impl<F> UnwindSafe for ExpClaim<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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