pub struct SymbolicAnalysis {
pub perm: Vec<usize>,
pub perm_inv: Vec<usize>,
pub etree: Vec<usize>,
pub l_colptr: Vec<usize>,
pub l_rowind: Vec<usize>,
pub u_colptr: Vec<usize>,
pub u_rowind: Vec<usize>,
pub n: usize,
}Expand description
Result of the symbolic analysis phase.
Contains the non-zero pattern of the factors and the elimination tree.
Fields§
§perm: Vec<usize>Fill-reducing permutation (row/column index mapping).
perm_inv: Vec<usize>Inverse permutation.
etree: Vec<usize>Elimination tree: parent[i] is the parent of node i, or usize::MAX for roots.
l_colptr: Vec<usize>Column pointers for the L factor non-zero pattern.
l_rowind: Vec<usize>Row indices for the L factor non-zero pattern.
u_colptr: Vec<usize>Column pointers for the U factor non-zero pattern (LU only).
u_rowind: Vec<usize>Row indices for the U factor non-zero pattern (LU only).
n: usizeMatrix dimension.
Trait Implementations§
Source§impl Clone for SymbolicAnalysis
impl Clone for SymbolicAnalysis
Source§fn clone(&self) -> SymbolicAnalysis
fn clone(&self) -> SymbolicAnalysis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SymbolicAnalysis
impl RefUnwindSafe for SymbolicAnalysis
impl Send for SymbolicAnalysis
impl Sync for SymbolicAnalysis
impl Unpin for SymbolicAnalysis
impl UnsafeUnpin for SymbolicAnalysis
impl UnwindSafe for SymbolicAnalysis
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more