pub enum DenseOrSparsePolynomial<'a, F: Field> {
SPolynomial(Cow<'a, SparsePolynomial<F>>),
DPolynomial(Cow<'a, DensePolynomial<F>>),
}
Expand description
Represents either a sparse polynomial or a dense one.
Variants§
SPolynomial(Cow<'a, SparsePolynomial<F>>)
Represents the case where self
is a sparse polynomial
DPolynomial(Cow<'a, DensePolynomial<F>>)
Represents the case where self
is a dense polynomial
Implementations§
source§impl<'a, F: Field> DenseOrSparsePolynomial<'a, F>
impl<'a, F: Field> DenseOrSparsePolynomial<'a, F>
sourcepub fn divide_with_q_and_r(
&self,
divisor: &Self
) -> Option<(DensePolynomial<F>, DensePolynomial<F>)>
pub fn divide_with_q_and_r( &self, divisor: &Self ) -> Option<(DensePolynomial<F>, DensePolynomial<F>)>
Divide self by another (sparse or dense) polynomial, and returns the quotient and remainder.
source§impl<'a, F: 'a + FftField> DenseOrSparsePolynomial<'a, F>
impl<'a, F: 'a + FftField> DenseOrSparsePolynomial<'a, F>
sourcepub fn evaluate_over_domain<D: EvaluationDomain<F>>(
poly: impl Into<Self>,
domain: D
) -> Evaluations<F, D>
pub fn evaluate_over_domain<D: EvaluationDomain<F>>( poly: impl Into<Self>, domain: D ) -> Evaluations<F, D>
Construct Evaluations
by evaluating a polynomial over the domain
domain
.
Trait Implementations§
source§impl<'a, F: Clone + Field> Clone for DenseOrSparsePolynomial<'a, F>
impl<'a, F: Clone + Field> Clone for DenseOrSparsePolynomial<'a, F>
source§fn clone(&self) -> DenseOrSparsePolynomial<'a, F>
fn clone(&self) -> DenseOrSparsePolynomial<'a, 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<'a, F: 'a + Field> From<&'a DensePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
impl<'a, F: 'a + Field> From<&'a DensePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
source§fn from(other: &'a DensePolynomial<F>) -> Self
fn from(other: &'a DensePolynomial<F>) -> Self
Converts to this type from the input type.
source§impl<'a, F: Field> From<&'a SparsePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
impl<'a, F: Field> From<&'a SparsePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
source§fn from(other: &'a SparsePolynomial<F>) -> Self
fn from(other: &'a SparsePolynomial<F>) -> Self
Converts to this type from the input type.
source§impl<'a, F: Field> From<DenseOrSparsePolynomial<'a, F>> for DensePolynomial<F>
impl<'a, F: Field> From<DenseOrSparsePolynomial<'a, F>> for DensePolynomial<F>
source§fn from(other: DenseOrSparsePolynomial<'a, F>) -> DensePolynomial<F>
fn from(other: DenseOrSparsePolynomial<'a, F>) -> DensePolynomial<F>
Converts to this type from the input type.
source§impl<'a, F: 'a + Field> From<DensePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
impl<'a, F: 'a + Field> From<DensePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
source§fn from(other: DensePolynomial<F>) -> Self
fn from(other: DensePolynomial<F>) -> Self
Converts to this type from the input type.
source§impl<'a, F: 'a + Field> From<SparsePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
impl<'a, F: 'a + Field> From<SparsePolynomial<F>> for DenseOrSparsePolynomial<'a, F>
source§fn from(other: SparsePolynomial<F>) -> Self
fn from(other: SparsePolynomial<F>) -> Self
Converts to this type from the input type.