pub fn factorize_simplicial_numeric_llt<I, E>(
    L_values: <<E as Entity>::Group as ForType>::FaerOf<&mut [<E as Entity>::Unit]>,
    A: SparseColMatRef<'_, I, E>,
    regularization: LltRegularization<E>,
    symbolic: &SymbolicSimplicialCholesky<I>,
    stack: PodStack<'_>,
) -> Result<usize, CholeskyError>
where I: Index, E: ComplexField,
Expand description

Computes the numeric values of the Cholesky LLT 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 on a matrix with the same symbolic structure. Otherwise, the behavior is unspecified and panics may occur.