pub enum ParametricType {
Objective,
Rhs,
}Expand description
Parameter type (which coefficient/RHS is parametric).
Variants§
Objective
Objective coefficient is parametric: c_j(λ) = c_j + λ * d_j
Rhs
RHS is parametric: b_i(λ) = b_i + λ * e_i
Trait Implementations§
Source§impl Clone for ParametricType
impl Clone for ParametricType
Source§fn clone(&self) -> ParametricType
fn clone(&self) -> ParametricType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParametricType
impl Debug for ParametricType
Source§impl PartialEq for ParametricType
impl PartialEq for ParametricType
Source§fn eq(&self, other: &ParametricType) -> bool
fn eq(&self, other: &ParametricType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ParametricType
impl Eq for ParametricType
impl StructuralPartialEq for ParametricType
Auto Trait Implementations§
impl Freeze for ParametricType
impl RefUnwindSafe for ParametricType
impl Send for ParametricType
impl Sync for ParametricType
impl Unpin for ParametricType
impl UnsafeUnpin for ParametricType
impl UnwindSafe for ParametricType
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