pub enum FixedDimIndexCompositions<C> {
Quadrivariate(IndexComposition<C, 4>),
Trivariate(IndexComposition<C, 3>),
Bivariate(IndexComposition<C, 2>),
}
Variants§
Quadrivariate(IndexComposition<C, 4>)
Trivariate(IndexComposition<C, 3>)
Bivariate(IndexComposition<C, 2>)
Trait Implementations§
Source§impl<P: PackedField, C: CompositionPoly<P> + Debug + Send + Sync> CompositionPoly<P> for FixedDimIndexCompositions<C>
impl<P: PackedField, C: CompositionPoly<P> + Debug + Send + Sync> CompositionPoly<P> for FixedDimIndexCompositions<C>
Source§fn binary_tower_level(&self) -> usize
fn binary_tower_level(&self) -> usize
Returns the maximum binary tower level of all constants in the arithmetic expression.
Source§fn expression(&self) -> ArithExpr<P::Scalar>
fn expression(&self) -> ArithExpr<P::Scalar>
Returns the arithmetic expression representing the polynomial.
Source§fn evaluate(&self, query: &[P]) -> Result<P, Error>
fn evaluate(&self, query: &[P]) -> Result<P, Error>
Evaluates the polynomial using packed values, where each packed value may contain multiple scalar values.
The evaluation follows SIMD semantics, meaning that operations are performed
element-wise across corresponding scalar values in the packed values. Read more
Auto Trait Implementations§
impl<C> Freeze for FixedDimIndexCompositions<C>where
C: Freeze,
impl<C> RefUnwindSafe for FixedDimIndexCompositions<C>where
C: RefUnwindSafe,
impl<C> Send for FixedDimIndexCompositions<C>where
C: Send,
impl<C> Sync for FixedDimIndexCompositions<C>where
C: Sync,
impl<C> Unpin for FixedDimIndexCompositions<C>where
C: Unpin,
impl<C> UnwindSafe for FixedDimIndexCompositions<C>where
C: 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<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