pub struct CholeskyOptions {
pub symmetry_tolerance: Tolerance,
pub pivot_tolerance: Tolerance,
}Fields§
§symmetry_tolerance: ToleranceFull input symmetry is checked. Accepted roundoff differences are not averaged: the lower triangle defines the effective symmetric matrix.
pivot_tolerance: ToleranceReject pivots <= max(abs, rel*max_abs(A)). Default only rejects <= zero.
Trait Implementations§
Source§impl Clone for CholeskyOptions
impl Clone for CholeskyOptions
Source§fn clone(&self) -> CholeskyOptions
fn clone(&self) -> CholeskyOptions
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 CholeskyOptions
Source§impl Debug for CholeskyOptions
impl Debug for CholeskyOptions
Auto Trait Implementations§
impl Freeze for CholeskyOptions
impl RefUnwindSafe for CholeskyOptions
impl Send for CholeskyOptions
impl Sync for CholeskyOptions
impl Unpin for CholeskyOptions
impl UnsafeUnpin for CholeskyOptions
impl UnwindSafe for CholeskyOptions
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