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.
Auto Trait Implementations§
impl<'a, F> Freeze for DenseOrSparsePolynomial<'a, F>
impl<'a, F> RefUnwindSafe for DenseOrSparsePolynomial<'a, F>where
F: RefUnwindSafe,
impl<'a, F> Send for DenseOrSparsePolynomial<'a, F>
impl<'a, F> Sync for DenseOrSparsePolynomial<'a, F>
impl<'a, F> Unpin for DenseOrSparsePolynomial<'a, F>where
F: Unpin,
impl<'a, F> UnwindSafe for DenseOrSparsePolynomial<'a, F>where
F: UnwindSafe + 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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)