pub struct LuResult {
pub info: i32,
}Expand description
Result of an LU factorization.
Contains diagnostic information about the factorization.
Fields§
§info: i32Status info:
- 0: successful factorization
- i > 0: U(i,i) is exactly zero, matrix is singular at column i
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LuResult
impl RefUnwindSafe for LuResult
impl Send for LuResult
impl Sync for LuResult
impl Unpin for LuResult
impl UnsafeUnpin for LuResult
impl UnwindSafe for LuResult
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