pub struct Expr<Var: Clone + Debug + PartialEq + Eq + Hash> {
pub const_term: i32,
pub var_to_coef: OrderedHashMap<Var, i64>,
}Expand description
A linear expression of variables.
Fields§
§const_term: i32The constant term of the expression.
var_to_coef: OrderedHashMap<Var, i64>The coefficient for every variable in the expression.
Implementations§
Trait Implementations§
impl<Var: Eq + Clone + Debug + PartialEq + Eq + Hash> Eq for Expr<Var>
impl<Var: Clone + Debug + PartialEq + Eq + Hash> StructuralPartialEq for Expr<Var>
Auto Trait Implementations§
impl<Var> Freeze for Expr<Var>
impl<Var> RefUnwindSafe for Expr<Var>where
Var: RefUnwindSafe,
impl<Var> Send for Expr<Var>where
Var: Send,
impl<Var> Sync for Expr<Var>where
Var: Sync,
impl<Var> Unpin for Expr<Var>where
Var: Unpin,
impl<Var> UnwindSafe for Expr<Var>where
Var: UnwindSafe,
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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>
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 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>
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