pub fn factorize_symbolic_cholesky<I>(
    A: SymbolicSparseColMatRef<'_, I>,
    side: Side,
    ord: SymmetricOrdering<'_, I>,
    params: CholeskySymbolicParams<'_>,
) -> Result<SymbolicCholesky<I>, FaerError>
where I: Index,
Expand description

Computes the symbolic Cholesky factorization of the matrix A, or returns an error if the operation could not be completed.