catlog::zero::rig

Struct Monomial

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

Source

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

Constructs the generating monomial corresponding to a variable.

Source

pub fn variables(&self) -> impl ExactSizeIterator<Item = &Var>

Iterates over the variables used in the monomial.

Source

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

Evaluates the monomial by substituting for the variables.

Source

pub fn eval_with_order<A>(&self, values: impl IntoIterator<Item = A>) -> A
where A: Pow<Exp, Output = A> + Product, Exp: Clone,

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.

Source

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

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: Clone, Exp: Clone> Clone for Monomial<Var, Exp>

Source§

fn clone(&self) -> Monomial<Var, 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, Exp> Default for Monomial<Var, Exp>

Source§

fn default() -> Self

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

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

Pretty print the monomial using ASCII.

Source§

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

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

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

Constructs a monomial from a sequence of variable-exponent pairs.

Source§

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

Creates a value from an iterator. Read more
Source§

impl<Var, Exp> Mul for Monomial<Var, Exp>
where Var: Ord, Exp: Add<Output = Exp>,

Source§

type Output = Monomial<Var, Exp>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Source§

fn mul_assign(&mut self, rhs: (Var, Exp))

Performs the *= operation. Read more
Source§

impl<Var, Exp> MulAssign for Monomial<Var, Exp>
where Var: Ord, Exp: Add<Output = Exp>,

Source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
Source§

impl<Var, Exp> One for Monomial<Var, Exp>
where Var: Ord, Exp: Add<Output = Exp>,

Source§

fn one() -> Self

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

fn is_one(&self) -> bool

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

fn set_one(&mut self)

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

impl<Var: Ord, Exp: Ord> Ord for Monomial<Var, Exp>

Source§

fn cmp(&self, other: &Monomial<Var, Exp>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<Var: PartialEq, Exp: PartialEq> PartialEq for Monomial<Var, Exp>

Source§

fn eq(&self, other: &Monomial<Var, 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: PartialOrd, Exp: PartialOrd> PartialOrd for Monomial<Var, Exp>

Source§

fn partial_cmp(&self, other: &Monomial<Var, Exp>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

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

Source§

type Output = Monomial<Var, Exp>

The result after applying the operator.
Source§

fn pow(self, a: Exp) -> Self::Output

Returns self to the power rhs. Read more
Source§

impl<Var, Exp> CommMonoid for Monomial<Var, Exp>
where Var: Ord, Exp: AdditiveMonoid,

Source§

impl<Var: Eq, Exp: Eq> Eq for Monomial<Var, Exp>

Source§

impl<Var, Exp> Monoid for Monomial<Var, Exp>
where Var: Ord, Exp: AdditiveMonoid,

Source§

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>
where Var: Send, Exp: Send,

§

impl<Var, Exp> Sync for Monomial<Var, Exp>
where Var: Sync, Exp: Sync,

§

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> 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, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,

§

impl<T, Right> ClosedMulAssign<Right> for T
where T: ClosedMul<Right> + MulAssign<Right>,