pub struct MultipointEvalFamilyInputs<'a, C: SetConfig> {
pub field_cfg: &'a C,
pub trace_mles: &'a [DenseMultilinearExtension<C::Element>],
pub bit_op_mles: &'a [DenseMultilinearExtension<C::Element>],
pub eval_point: &'a [C::Element],
pub up_evals: &'a [C::Element],
pub bit_op_evals: &'a [C::Element],
pub down_evals: &'a [C::Element],
}Expand description
Per-family inputs to the lockstep multi-point evaluation protocol, those that aren’t shared between families.
All families share the same shifts (UAIR-static), the same column
counts, and the same num_vars. They differ only in (a) the field
config they operate over and (b) the per-family field-projected
trace_mles, bit-op virtual MLEs, eval_point, up_evals, and
down_evals.
Fields§
§field_cfg: &'a CField configuration for this family.
trace_mles: &'a [DenseMultilinearExtension<C::Element>]Trace MLEs for this family (projected into this family’s field).
bit_op_mles: &'a [DenseMultilinearExtension<C::Element>]Bit-op virtual MLEs for this family (projected into this family’s field).
eval_point: &'a [C::Element]Evaluation point $r^\star$ for this family.
up_evals: &'a [C::Element]up_eval_j = v_j(r*) for every column $j$, in this family’s
field.
bit_op_evals: &'a [C::Element]bit_op_eval_l = bit_op_l(r*) for every bit-op virtual column
$l$, in this family’s field.
down_evals: &'a [C::Element]down_eval_k = v_{src_k}^{<<c_k}(r*) for every shift $k$, in
this family’s field.
Auto Trait Implementations§
impl<'a, C> Freeze for MultipointEvalFamilyInputs<'a, C>
impl<'a, C> RefUnwindSafe for MultipointEvalFamilyInputs<'a, C>where
C: RefUnwindSafe,
<C as SetConfig>::Element: RefUnwindSafe,
impl<'a, C> Send for MultipointEvalFamilyInputs<'a, C>
impl<'a, C> Sync for MultipointEvalFamilyInputs<'a, C>
impl<'a, C> Unpin for MultipointEvalFamilyInputs<'a, C>
impl<'a, C> UnsafeUnpin for MultipointEvalFamilyInputs<'a, C>
impl<'a, C> UnwindSafe for MultipointEvalFamilyInputs<'a, C>where
C: RefUnwindSafe,
<C as SetConfig>::Element: 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
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>
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>
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