pub fn factorize_simplicial_numeric_llt<I: Index, T: ComplexField>(
L_values: &mut [T],
A: SparseColMatRef<'_, I, T>,
regularization: LltRegularization<T::Real>,
symbolic: &SymbolicSimplicialCholesky<I>,
stack: &mut MemStack,
) -> Result<LltInfo, LltError>Expand description
computes the numeric values of the cholesky $LL^H$ factor of the matrix $A$, and stores them
in l_values
§note
only the upper triangular part of $A$ is accessed
§panics
the symbolic structure must be computed by calling
factorize_simplicial_symbolic_cholesky on a matrix with the same symbolic structure
otherwise, the behavior is unspecified and panics may occur