catlog::zero::alg

Struct Polynomial

Source
pub struct Polynomial<Var, Coef, Exp>(/* private fields */);
Expand description

A polynomial in several variables.

This data structure is for polynomials in normal form: a polynomial is a formal linear combination of monomials in which no monomial is repeated, and no variable is repeated within any monomial. The implementation is indeed a Combination of a Monomials. The use of a normal form means that polynomial arithmetic automatically performs certain simplifications.

In abstract terms, polynomials with coefficients valued in a commutative ring R are the free commutative algebra over R.

Implementations§

Source§

impl<Var, Coef, Exp> Polynomial<Var, Coef, Exp>
where Var: Ord, Exp: Ord,

Source

pub fn generator(var: Var) -> Self
where Coef: One, Exp: One,

Constructs the generating polynomial corresponding to a variable.

Source

pub fn from_monomial(m: Monomial<Var, Exp>) -> Self
where Coef: One,

Constructs the polynomial corresponding to a monomial.

Source

pub fn monomials(&self) -> impl ExactSizeIterator<Item = &Monomial<Var, Exp>>

Iterates over the monomials in the polynomial.

Source

pub fn extend_scalars<NewCoef, F>(self, f: F) -> Polynomial<Var, NewCoef, Exp>
where F: FnMut(Coef) -> NewCoef,

Maps the coefficients of the polynomial.

In the usual situations when the coefficients from commutative rigs and the mapping is a rig homomorphism, this operation is extension of scalars applied to free commutative algebras.

Source

pub fn eval<A, F>(&self, f: F) -> A
where A: Clone + Mul<Coef, Output = A> + Pow<Exp, Output = A> + Sum + Product, F: Clone + FnMut(&Var) -> A, Coef: Clone, Exp: Clone,

Evaluates the polynomial by substituting for the variables.

Source

pub fn eval_pairs<A>(&self, pairs: impl IntoIterator<Item = (Var, A)>) -> A
where A: Clone + Mul<Coef, Output = A> + Pow<Exp, Output = A> + Sum + Product, Coef: Clone, Exp: Clone,

Evaluates the polynomial on a sequence of variable-value pairs.

This is a convenient way to evaluate the polynomial at a single point but it is not very efficient.

Source

pub fn map_variables<NewVar, F>(&self, f: F) -> Polynomial<NewVar, Coef, Exp>
where Coef: Clone + Add<Output = Coef>, Exp: Clone + Add<Output = Exp>, NewVar: Clone + Ord, F: FnMut(&Var) -> NewVar,

Maps over the variables in the polynomial.

The mapping need not be injective. This is conceptually equivalent to evaluating the polynomial with a map that sends generators to generators but avoids assuming that an arbitrary polynomial can be exponentiated, which is only makes sense when the exponents are nonnegative integers.

Trait Implementations§

Source§

impl<Var, Coef, Exp> Add for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Add<Output = Coef>, Exp: Ord,

Source§

type Output = Polynomial<Var, Coef, Exp>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<Var, Coef, Exp> AddAssign<(Coef, Monomial<Var, Exp>)> for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Add<Output = Coef>, Exp: Ord,

Source§

fn add_assign(&mut self, rhs: (Coef, Monomial<Var, Exp>))

Performs the += operation. Read more
Source§

impl<Var: Clone, Coef: Clone, Exp: Clone> Clone for Polynomial<Var, Coef, Exp>

Source§

fn clone(&self) -> Polynomial<Var, Coef, Exp>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Var, Coef, Exp> CommAlg for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Default + CommRing, Exp: Clone + Ord + AdditiveMonoid,

Source§

type R = Coef

The base ring of the algebra.
Source§

fn from_scalar(r: Self::R) -> Self

Convert an element of the base ring into an element of the algebra. Read more
Source§

impl<Var, Coef, Exp> Default for Polynomial<Var, Coef, Exp>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<Var, Coef, Exp> Display for Polynomial<Var, Coef, Exp>
where Var: Display, Coef: Display + PartialEq + One, Exp: Display + PartialEq + One,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Var, Coef, Exp> FromIterator<(Coef, Monomial<Var, Exp>)> for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Add<Output = Coef>, Exp: Ord,

Source§

fn from_iter<T: IntoIterator<Item = (Coef, Monomial<Var, Exp>)>>( iter: T, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<Var, Coef, Exp> Module for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Clone + Default + CommRing, Exp: Ord,

Source§

type Ring = Coef

Base ring for the module.
Source§

impl<Var, Coef, Exp> Mul<Coef> for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Clone + Default + Mul<Output = Coef>, Exp: Ord,

Source§

type Output = Polynomial<Var, Coef, Exp>

The resulting type after applying the * operator.
Source§

fn mul(self, a: Coef) -> Self::Output

Performs the * operation. Read more
Source§

impl<Var, Coef, Exp> Mul for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Add<Output = Coef> + Mul<Output = Coef>, Exp: Clone + Ord + Add<Output = Exp>,

Multiply polynomials using the distributive law.

Source§

type Output = Polynomial<Var, Coef, Exp>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl<Var, Coef, Exp> Neg for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Default + Neg<Output = Coef>, Exp: Ord,

Source§

type Output = Polynomial<Var, Coef, Exp>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl<Var, Coef, Exp> One for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Add<Output = Coef> + One, Exp: Clone + Ord + Add<Output = Exp>,

Source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
Source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
Source§

fn is_one(&self) -> bool
where Self: PartialEq,

Returns true if self is equal to the multiplicative identity. Read more
Source§

impl<Var: PartialEq, Coef: PartialEq, Exp: PartialEq> PartialEq for Polynomial<Var, Coef, Exp>

Source§

fn eq(&self, other: &Polynomial<Var, Coef, Exp>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<Var, Coef, Exp> RigModule for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Clone + Default + CommRig, Exp: Ord,

Source§

type Rig = Coef

Base rig for the module.
Source§

impl<Var, Coef, Exp> Zero for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Add<Output = Coef>, Exp: Ord,

Source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl<Var, Coef, Exp> AbGroup for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Default + AbGroup, Exp: Ord,

Source§

impl<Var, Coef, Exp> AdditiveMonoid for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: AdditiveMonoid, Exp: Ord,

Source§

impl<Var, Coef, Exp> CommMonoid for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + CommRig, Exp: Clone + Ord + AdditiveMonoid,

Source§

impl<Var, Coef, Exp> CommRig for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + CommRig, Exp: Clone + Ord + AdditiveMonoid,

Source§

impl<Var, Coef, Exp> CommRing for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Default + CommRing, Exp: Clone + Ord + AdditiveMonoid,

Source§

impl<Var: Eq, Coef: Eq, Exp: Eq> Eq for Polynomial<Var, Coef, Exp>

Source§

impl<Var, Coef, Exp> Monoid for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Rig, Exp: Clone + Ord + AdditiveMonoid,

Source§

impl<Var, Coef, Exp> Rig for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Rig, Exp: Clone + Ord + AdditiveMonoid,

Source§

impl<Var, Coef, Exp> Ring for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Default + Ring, Exp: Clone + Ord + AdditiveMonoid,

Source§

impl<Var, Coef, Exp> StructuralPartialEq for Polynomial<Var, Coef, Exp>

Auto Trait Implementations§

§

impl<Var, Coef, Exp> Freeze for Polynomial<Var, Coef, Exp>

§

impl<Var, Coef, Exp> RefUnwindSafe for Polynomial<Var, Coef, Exp>
where Coef: RefUnwindSafe, Var: RefUnwindSafe, Exp: RefUnwindSafe,

§

impl<Var, Coef, Exp> Send for Polynomial<Var, Coef, Exp>
where Coef: Send, Var: Send, Exp: Send,

§

impl<Var, Coef, Exp> Sync for Polynomial<Var, Coef, Exp>
where Coef: Sync, Var: Sync, Exp: Sync,

§

impl<Var, Coef, Exp> Unpin for Polynomial<Var, Coef, Exp>

§

impl<Var, Coef, Exp> UnwindSafe for Polynomial<Var, Coef, Exp>
where Coef: RefUnwindSafe, Var: RefUnwindSafe, Exp: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> ClosedNeg for T
where T: Neg<Output = T>,