Home | History | Annotate | Download | only in SuperLUSupport

Lines Matching full:sparse

85   * A wrapper class for SuperLU matrices. It supports only compressed sparse matrices
332 /** Computes the sparse Cholesky decomposition of \a matrix */
468 * \brief A sparse
470 * This class allows to solve for A.X = B sparse linear problems via a direct LU factorization
471 * using the SuperLU library. The sparse matrix A must be squared and invertible. The vectors or matrices
472 * X and B can be either dense or sparse.
474 * \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>
807 * \brief A sparse direct \b incomplete LU factorization and solver based on the SuperLU library
809 * This class allows to solve for an approximate solution of A.X = B sparse linear problems via an incomplete LU factorization
814 * \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>