pub fn factorize_supernodal_numeric_ldlt<I, E>(
    L_values: <<E as Entity>::Group as ForType>::FaerOf<&mut [<E as Entity>::Unit]>,
    A_lower: SparseColMatRef<'_, I, E>,
    regularization: LdltRegularization<'_, E>,
    symbolic: &SymbolicSupernodalCholesky<I>,
    parallelism: Parallelism<'_>,
    stack: PodStack<'_>,
) -> usize
where I: Index, E: ComplexField,
Expand description

Computes the numeric values of the Cholesky LDLT factors of the matrix A, and stores them in L_values.

§Note

Only the lower (not upper, unlikely the other functions) triangular part of A is accessed.

§Panics

The symbolic structure must be computed by calling factorize_supernodal_symbolic on a matrix with the same symbolic structure. Otherwise, the behavior is unspecified and panics may occur.