mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Update doc to make it clear that only SuperLU 4.x is supported
This commit is contained in:
@@ -43,6 +43,8 @@ namespace Eigen { struct SluMatrix; }
|
|||||||
* - class SuperLU: a supernodal sequential LU factorization.
|
* - class SuperLU: a supernodal sequential LU factorization.
|
||||||
* - class SuperILU: a supernodal sequential incomplete LU factorization (to be used as a preconditioner for iterative methods).
|
* - class SuperILU: a supernodal sequential incomplete LU factorization (to be used as a preconditioner for iterative methods).
|
||||||
*
|
*
|
||||||
|
* \warning This wrapper is only for the 4.x versions of SuperLU. The 3.x and 5.x versions are not supported.
|
||||||
|
*
|
||||||
* \warning When including this module, you have to use SUPERLU_EMPTY instead of EMPTY which is no longer defined because it is too polluting.
|
* \warning When including this module, you have to use SUPERLU_EMPTY instead of EMPTY which is no longer defined because it is too polluting.
|
||||||
*
|
*
|
||||||
* \code
|
* \code
|
||||||
|
|||||||
@@ -452,6 +452,8 @@ class SuperLUBase : public SparseSolverBase<Derived>
|
|||||||
*
|
*
|
||||||
* \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>
|
* \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>
|
||||||
*
|
*
|
||||||
|
* \warning This class is only for the 4.x versions of SuperLU. The 3.x and 5.x versions are not supported.
|
||||||
|
*
|
||||||
* \implsparsesolverconcept
|
* \implsparsesolverconcept
|
||||||
*
|
*
|
||||||
* \sa \ref TutorialSparseDirectSolvers
|
* \sa \ref TutorialSparseDirectSolvers
|
||||||
@@ -801,7 +803,7 @@ typename SuperLU<MatrixType>::Scalar SuperLU<MatrixType>::determinant() const
|
|||||||
* This class allows to solve for an approximate solution of A.X = B sparse linear problems via an incomplete LU factorization
|
* This class allows to solve for an approximate solution of A.X = B sparse linear problems via an incomplete LU factorization
|
||||||
* using the SuperLU library. This class is aimed to be used as a preconditioner of the iterative linear solvers.
|
* using the SuperLU library. This class is aimed to be used as a preconditioner of the iterative linear solvers.
|
||||||
*
|
*
|
||||||
* \warning This class requires SuperLU 4 or later.
|
* \warning This class is only for the 4.x versions of SuperLU. The 3.x and 5.x versions are not supported.
|
||||||
*
|
*
|
||||||
* \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>
|
* \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user