pub enum SubstitutionMethod {
Direct,
Original,
}Expand description
Method used for back-substitution after Gaussian elimination.
Variants§
Direct
Solve directly using the GE-reduced matrix.
Original
Solve using the original constraint matrix.
Trait Implementations§
Source§impl Clone for SubstitutionMethod
impl Clone for SubstitutionMethod
Source§fn clone(&self) -> SubstitutionMethod
fn clone(&self) -> SubstitutionMethod
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 moreimpl Copy for SubstitutionMethod
Source§impl Debug for SubstitutionMethod
impl Debug for SubstitutionMethod
Source§impl PartialEq for SubstitutionMethod
impl PartialEq for SubstitutionMethod
impl StructuralPartialEq for SubstitutionMethod
Auto Trait Implementations§
impl Freeze for SubstitutionMethod
impl RefUnwindSafe for SubstitutionMethod
impl Send for SubstitutionMethod
impl Sync for SubstitutionMethod
impl Unpin for SubstitutionMethod
impl UnsafeUnpin for SubstitutionMethod
impl UnwindSafe for SubstitutionMethod
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