pub struct Combination<Var, Coef>(/* private fields */);
Expand description
A formal linear combination.
This data structure is for linear combinations of indeterminates/variables
(Var
) with coefficients (Coef
) valued in a rig or at minimum in an
additive monoid. For example, the coefficients could be
natural numbers, integers, real numbers, or nonnegative real numbers.
Linear combinations are the data structure for free modules. That is, for any rig R, the free R-module on a set consists of formal R-linear combinations on elements of the set.
Combinations have exactly the same underlying data structure as monomials, but are written additively rather than multiplicatively.
Implementations§
Source§impl<Var, Coef> Combination<Var, Coef>where
Var: Ord,
impl<Var, Coef> Combination<Var, Coef>where
Var: Ord,
Sourcepub fn generator(var: Var) -> Selfwhere
Coef: One,
pub fn generator(var: Var) -> Selfwhere
Coef: One,
Constructs the generating combination 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 combination.
Sourcepub fn extend_scalars<NewCoef, F>(self, f: F) -> Combination<Var, NewCoef>where
F: FnMut(Coef) -> NewCoef,
pub fn extend_scalars<NewCoef, F>(self, f: F) -> Combination<Var, NewCoef>where
F: FnMut(Coef) -> NewCoef,
Maps the coefficients in the combination.
In the usual situation when the coefficients form rigs and the mapping is a rig homomorphism, this operation is extension of scalars applied to free modules.
Sourcepub fn eval<A, F>(&self, f: F) -> A
pub fn eval<A, F>(&self, f: F) -> A
Evaluates the combination by substituting for the variables.
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 combination 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 combination.
Trait Implementations§
Source§impl<Var, Coef> Add for Combination<Var, Coef>
impl<Var, Coef> Add for Combination<Var, Coef>
Source§impl<Var, Coef> AddAssign<(Coef, Var)> for Combination<Var, Coef>
impl<Var, Coef> AddAssign<(Coef, Var)> for Combination<Var, Coef>
Source§fn add_assign(&mut self, rhs: (Coef, Var))
fn add_assign(&mut self, rhs: (Coef, Var))
+=
operation. Read moreSource§impl<Var, Coef> AddAssign for Combination<Var, Coef>
impl<Var, Coef> AddAssign for Combination<Var, Coef>
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
+=
operation. Read moreSource§impl<Var: Clone, Coef: Clone> Clone for Combination<Var, Coef>
impl<Var: Clone, Coef: Clone> Clone for Combination<Var, Coef>
Source§fn clone(&self) -> Combination<Var, Coef>
fn clone(&self) -> Combination<Var, Coef>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<Var, Coef> Default for Combination<Var, Coef>
impl<Var, Coef> Default for Combination<Var, Coef>
Source§impl<Var, Coef> Display for Combination<Var, Coef>
Pretty print the combination using ASCII.
impl<Var, Coef> Display for Combination<Var, Coef>
Pretty print the combination using ASCII.
Intended for debugging/testing rather than any serious use.
Source§impl<Var, Coef> FromIterator<(Coef, Var)> for Combination<Var, Coef>
Constructs a combination from a list of terms (coefficient-variable pairs).
impl<Var, Coef> FromIterator<(Coef, Var)> for Combination<Var, Coef>
Constructs a combination from a list of terms (coefficient-variable pairs).
Source§fn from_iter<T: IntoIterator<Item = (Coef, Var)>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = (Coef, Var)>>(iter: T) -> Self
Source§impl<'a, Var, Coef> IntoIterator for &'a Combination<Var, Coef>
impl<'a, Var, Coef> IntoIterator for &'a Combination<Var, Coef>
Source§impl<Var, Coef> IntoIterator for Combination<Var, Coef>
Iterates over the terms (coefficient-variable pairs) of the polynomial.
impl<Var, Coef> IntoIterator for Combination<Var, Coef>
Iterates over the terms (coefficient-variable pairs) of the polynomial.
Source§impl<Var, Coef> Module for Combination<Var, Coef>
impl<Var, Coef> Module for Combination<Var, Coef>
Source§impl<Var, Coef> Mul<Coef> for Combination<Var, Coef>
impl<Var, Coef> Mul<Coef> for Combination<Var, Coef>
Source§impl<Var, Coef> Neg for Combination<Var, Coef>
impl<Var, Coef> Neg for Combination<Var, Coef>
Source§impl<Var, Coef> RigModule for Combination<Var, Coef>
impl<Var, Coef> RigModule for Combination<Var, Coef>
Source§impl<Var, Coef> Zero for Combination<Var, Coef>
impl<Var, Coef> Zero for Combination<Var, Coef>
impl<Var, Coef> AbGroup for Combination<Var, Coef>
impl<Var, Coef> AdditiveMonoid for Combination<Var, Coef>where
Var: Ord,
Coef: AdditiveMonoid,
impl<Var: Eq, Coef: Eq> Eq for Combination<Var, Coef>
impl<Var, Coef> StructuralPartialEq for Combination<Var, Coef>
Auto Trait Implementations§
impl<Var, Coef> Freeze for Combination<Var, Coef>
impl<Var, Coef> RefUnwindSafe for Combination<Var, Coef>where
Var: RefUnwindSafe,
Coef: RefUnwindSafe,
impl<Var, Coef> Send for Combination<Var, Coef>
impl<Var, Coef> Sync for Combination<Var, Coef>
impl<Var, Coef> Unpin for Combination<Var, Coef>
impl<Var, Coef> UnwindSafe for Combination<Var, Coef>where
Var: RefUnwindSafe,
Coef: 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.