aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/PardisoSupport/PardisoSupport.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/PardisoSupport/PardisoSupport.h')
-rwxr-xr-xEigen/src/PardisoSupport/PardisoSupport.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Eigen/src/PardisoSupport/PardisoSupport.h b/Eigen/src/PardisoSupport/PardisoSupport.h
index 234e3213b..9c18eb9b9 100755
--- a/Eigen/src/PardisoSupport/PardisoSupport.h
+++ b/Eigen/src/PardisoSupport/PardisoSupport.h
@@ -371,6 +371,8 @@ void PardisoImpl<Derived>::_solve_impl(const MatrixBase<BDerived> &b, MatrixBase
*
* \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>
*
+ * \implsparsesolverconcept
+ *
* \sa \ref TutorialSparseDirectSolvers
*/
template<typename MatrixType>
@@ -421,6 +423,8 @@ class PardisoLU : public PardisoImpl< PardisoLU<MatrixType> >
* \tparam UpLo can be any bitwise combination of Upper, Lower. The default is Upper, meaning only the upper triangular part has to be used.
* Upper|Lower can be used to tell both triangular parts can be used as input.
*
+ * \implsparsesolverconcept
+ *
* \sa \ref TutorialSparseDirectSolvers
*/
template<typename MatrixType, int _UpLo>
@@ -479,6 +483,8 @@ class PardisoLLT : public PardisoImpl< PardisoLLT<MatrixType,_UpLo> >
* Symmetric can be used for symmetric, non-selfadjoint complex matrices, the default being to assume a selfadjoint matrix.
* Upper|Lower can be used to tell both triangular parts can be used as input.
*
+ * \implsparsesolverconcept
+ *
* \sa \ref TutorialSparseDirectSolvers
*/
template<typename MatrixType, int Options>