pub enum Strategy {
Terminate,
Skip,
Full,
}
Expand description
Strategy for linearly dependent vectors appearing in iterative QR decomposition
Variantsยง
Terminate
Terminate iteration if dependent vector comes
Skip
Skip dependent vector
Full
Orthogonalize dependent vector without adding to Q, i.e. R must be non-square like following:
x x x x x
0 x x x x
0 0 0 x x
0 0 0 0 x
Trait Implementationsยง
impl Copy for Strategy
impl Eq for Strategy
impl StructuralPartialEq for Strategy
Auto Trait Implementationsยง
impl Freeze for Strategy
impl RefUnwindSafe for Strategy
impl Send for Strategy
impl Sync for Strategy
impl Unpin for Strategy
impl UnwindSafe for Strategy
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