pub struct ProductComposition<const N: usize>;
Implementations§
Trait Implementations§
Source§impl<const N: usize> Clone for ProductComposition<N>
impl<const N: usize> Clone for ProductComposition<N>
Source§fn clone(&self) -> ProductComposition<N>
fn clone(&self) -> ProductComposition<N>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<P: PackedField, const N: usize> CompositionPolyOS<P> for ProductComposition<N>
impl<P: PackedField, const N: usize> CompositionPolyOS<P> for ProductComposition<N>
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
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§impl<const N: usize> Debug for ProductComposition<N>
impl<const N: usize> Debug for ProductComposition<N>
Source§impl<const N: usize> Default for ProductComposition<N>
impl<const N: usize> Default for ProductComposition<N>
Source§fn default() -> ProductComposition<N>
fn default() -> ProductComposition<N>
Returns the “default value” for a type. Read more
impl<const N: usize> Copy for ProductComposition<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for ProductComposition<N>
impl<const N: usize> RefUnwindSafe for ProductComposition<N>
impl<const N: usize> Send for ProductComposition<N>
impl<const N: usize> Sync for ProductComposition<N>
impl<const N: usize> Unpin for ProductComposition<N>
impl<const N: usize> UnwindSafe for ProductComposition<N>
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