pub fn factorize_supernodal_numeric_lu<I, E>(
    row_perm: &mut [I],
    row_perm_inv: &mut [I],
    lu: &mut SupernodalLu<I, E>,
    A: SparseColMatRef<'_, I, E>,
    AT: SparseColMatRef<'_, I, E>,
    col_perm: PermRef<'_, I>,
    symbolic: &SymbolicSupernodalLu<I>,
    parallelism: Parallelism<'_>,
    stack: PodStack<'_>,
) -> Result<(), LuError>
where I: Index, E: ComplexField,
Expand description

Computes the numeric values of the LU factors of the matrix A as well as the row pivoting permutation, and stores them in lu and row_perm/row_perm_inv.