pub struct IsomorphicEvaluationDomainFactory<F: BinaryField> { /* private fields */ }
Trait Implementations§
Source§impl<F: Clone + BinaryField> Clone for IsomorphicEvaluationDomainFactory<F>
impl<F: Clone + BinaryField> Clone for IsomorphicEvaluationDomainFactory<F>
Source§fn clone(&self) -> IsomorphicEvaluationDomainFactory<F>
fn clone(&self) -> IsomorphicEvaluationDomainFactory<F>
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<F: Default + BinaryField> Default for IsomorphicEvaluationDomainFactory<F>
impl<F: Default + BinaryField> Default for IsomorphicEvaluationDomainFactory<F>
Source§fn default() -> IsomorphicEvaluationDomainFactory<F>
fn default() -> IsomorphicEvaluationDomainFactory<F>
Returns the “default value” for a type. Read more
Source§impl<FSrc, FTgt> EvaluationDomainFactory<FTgt> for IsomorphicEvaluationDomainFactory<FSrc>
impl<FSrc, FTgt> EvaluationDomainFactory<FTgt> for IsomorphicEvaluationDomainFactory<FSrc>
Source§fn create(&self, size: usize) -> Result<EvaluationDomain<FTgt>, Error>
fn create(&self, size: usize) -> Result<EvaluationDomain<FTgt>, Error>
Instantiates an EvaluationDomain of
size
points from $K \mathbin{/} \mathbb{F}_2 \cup \infty$
where $K$ is a finite extension of degree $d$.
For size >= 3
, the first size - 1
domain points are a “lexicographic prefix” of the binary
subspace defined by the $\mathbb{F}_2$-basis $\beta_0,\ldots ,\beta_{d-1}$. The additional assumption
$\beta_0 = 1$ means that first two points of the basis are always 0 and 1 of the field $K$.
The last point of the domain is Karatsuba “infinity” (denoted $\infty$), which is the coefficient of the
highest power in the interpolated polynomial (see the “Evaluation” section of the Wikipedia article
on Toom-Cook multiplication for
an introduction). Read moreAuto Trait Implementations§
impl<F> Freeze for IsomorphicEvaluationDomainFactory<F>
impl<F> RefUnwindSafe for IsomorphicEvaluationDomainFactory<F>
impl<F> Send for IsomorphicEvaluationDomainFactory<F>
impl<F> Sync for IsomorphicEvaluationDomainFactory<F>
impl<F> Unpin for IsomorphicEvaluationDomainFactory<F>
impl<F> UnwindSafe for IsomorphicEvaluationDomainFactory<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