pub struct SymbolicSimplicialCholesky<I> { /* private fields */ }Expand description
cholesky factor structure containing its symbolic structure
Implementations§
Source§impl<I: Index> SymbolicSimplicialCholesky<I>
impl<I: Index> SymbolicSimplicialCholesky<I>
Sourcepub fn len_val(&self) -> usize
pub fn len_val(&self) -> usize
returns the length of the slice that can be used to contain the numerical values of the cholesky factor
Sourcepub fn factor(&self) -> SymbolicSparseColMatRef<'_, I>
pub fn factor(&self) -> SymbolicSparseColMatRef<'_, I>
returns the cholesky factor’s symbolic structure
Sourcepub fn solve_in_place_scratch<T>(&self, rhs_ncols: usize) -> StackReq
pub fn solve_in_place_scratch<T>(&self, rhs_ncols: usize) -> StackReq
returns the size and alignment of the workspace required to solve the system $A x = rhs$
Trait Implementations§
Source§impl<I: Clone> Clone for SymbolicSimplicialCholesky<I>
impl<I: Clone> Clone for SymbolicSimplicialCholesky<I>
Source§fn clone(&self) -> SymbolicSimplicialCholesky<I>
fn clone(&self) -> SymbolicSimplicialCholesky<I>
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<I> Freeze for SymbolicSimplicialCholesky<I>
impl<I> RefUnwindSafe for SymbolicSimplicialCholesky<I>where
I: RefUnwindSafe,
impl<I> Send for SymbolicSimplicialCholesky<I>where
I: Send,
impl<I> Sync for SymbolicSimplicialCholesky<I>where
I: Sync,
impl<I> Unpin for SymbolicSimplicialCholesky<I>where
I: Unpin,
impl<I> UnwindSafe for SymbolicSimplicialCholesky<I>where
I: UnwindSafe,
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> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
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