aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/PardisoSupport/PardisoSupport.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-10-08 10:50:39 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-10-08 10:50:39 +0200
commit64242b8bf367752df4d28170cbbb6b86037ff988 (patch)
tree20d60f6db4211b7af0227058f5b5864b9a8879ec /Eigen/src/PardisoSupport/PardisoSupport.h
parent131db3c552304e1fa2c9438ec71a99ef32eea54e (diff)
Doc: add link to doc of sparse solver concept
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>