pub struct Monomial<Var, Exp>(/* private fields */);
Expand description
A monomial in several variables.
This data structure is for monomials in several indeterminates/variables
(Var
), having exponents (Exp
) valued in an additive
monoid. Most standardly, the exponents will be natural numbers
(say u32
or u64
), in which case the monomials in a set of variables, under
their usual multiplication, are the free commutative monoid on that set. Other
types of coefficents are also allowed, such as negative integers as in Laurent
polynomials, or real numbers as in
S-systems.
The underlying data structure is a B-tree map from variables to exponents. Thus, the variable type is assumed to be ordered. Moreover, when the exponents are also ordered, as they almost always are, the monomials themselves become ordered under the lexicographic order. This is a valid monomial ordering as used in Groebner bases (IVA, Section 2.2).
Implementations§
Source§impl<Var, Exp> Monomial<Var, Exp>where
Var: Ord,
impl<Var, Exp> Monomial<Var, Exp>where
Var: Ord,
Sourcepub fn generator(var: Var) -> Selfwhere
Exp: One,
pub fn generator(var: Var) -> Selfwhere
Exp: One,
Constructs the generating monomial corresponding to a variable.
Sourcepub fn variables(&self) -> impl ExactSizeIterator<Item = &Var>
pub fn variables(&self) -> impl ExactSizeIterator<Item = &Var>
Iterates over the variables used in the monomial.
Sourcepub fn eval_with_order<A>(&self, values: impl IntoIterator<Item = A>) -> A
pub fn eval_with_order<A>(&self, values: impl IntoIterator<Item = A>) -> A
Evaluates the monomial by substituting from a sequence of values.
The order of the values should correspond to the order of the variables. Will panic if the number of values does not equal the length of the monomial.
Sourcepub fn map_variables<NewVar, F>(&self, f: F) -> Monomial<NewVar, Exp>
pub fn map_variables<NewVar, F>(&self, f: F) -> Monomial<NewVar, Exp>
Maps over the variables of the monomial.
The mapping need not be injective. This is conceptually equivalent to evaluating the monomial with a map that sends generators to generators.
Trait Implementations§
Source§impl<Var, Exp> FromIterator<(Var, Exp)> for Monomial<Var, Exp>
Constructs a monomial from a sequence of variable-exponent pairs.
impl<Var, Exp> FromIterator<(Var, Exp)> for Monomial<Var, Exp>
Constructs a monomial from a sequence of variable-exponent pairs.
Source§fn from_iter<T: IntoIterator<Item = (Var, Exp)>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = (Var, Exp)>>(iter: T) -> Self
Source§impl<Var, Exp> MulAssign<(Var, Exp)> for Monomial<Var, Exp>
impl<Var, Exp> MulAssign<(Var, Exp)> for Monomial<Var, Exp>
Source§fn mul_assign(&mut self, rhs: (Var, Exp))
fn mul_assign(&mut self, rhs: (Var, Exp))
*=
operation. Read moreSource§impl<Var, Exp> MulAssign for Monomial<Var, Exp>
impl<Var, Exp> MulAssign for Monomial<Var, Exp>
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
*=
operation. Read moreSource§impl<Var: Ord, Exp: Ord> Ord for Monomial<Var, Exp>
impl<Var: Ord, Exp: Ord> Ord for Monomial<Var, Exp>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<Var: PartialOrd, Exp: PartialOrd> PartialOrd for Monomial<Var, Exp>
impl<Var: PartialOrd, Exp: PartialOrd> PartialOrd for Monomial<Var, Exp>
impl<Var, Exp> CommMonoid for Monomial<Var, Exp>where
Var: Ord,
Exp: AdditiveMonoid,
impl<Var: Eq, Exp: Eq> Eq for Monomial<Var, Exp>
impl<Var, Exp> Monoid for Monomial<Var, Exp>where
Var: Ord,
Exp: AdditiveMonoid,
impl<Var, Exp> StructuralPartialEq for Monomial<Var, Exp>
Auto Trait Implementations§
impl<Var, Exp> Freeze for Monomial<Var, Exp>
impl<Var, Exp> RefUnwindSafe for Monomial<Var, Exp>where
Var: RefUnwindSafe,
Exp: RefUnwindSafe,
impl<Var, Exp> Send for Monomial<Var, Exp>
impl<Var, Exp> Sync for Monomial<Var, Exp>
impl<Var, Exp> Unpin for Monomial<Var, Exp>
impl<Var, Exp> UnwindSafe for Monomial<Var, Exp>where
Var: RefUnwindSafe,
Exp: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.