aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.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/IterativeLinearSolvers/BasicPreconditioners.h
parent131db3c552304e1fa2c9438ec71a99ef32eea54e (diff)
Doc: add link to doc of sparse solver concept
Diffstat (limited to 'Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h')
-rw-r--r--Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h b/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
index ff7f08c1c..b850630a3 100644
--- a/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
+++ b/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
@@ -23,6 +23,8 @@ namespace Eigen {
*
* \tparam _Scalar the type of the scalar.
*
+ * \implsparsesolverconcept
+ *
* This preconditioner is suitable for both selfadjoint and general problems.
* The diagonal entries are pre-inverted and stored into a dense vector.
*
@@ -114,6 +116,8 @@ class DiagonalPreconditioner
*
* \tparam _Scalar the type of the scalar.
*
+ * \implsparsesolverconcept
+ *
* The diagonal entries are pre-inverted and stored into a dense vector.
*
* \sa class LeastSquaresConjugateGradient, class DiagonalPreconditioner
@@ -172,6 +176,8 @@ class LeastSquareDiagonalPreconditioner : public DiagonalPreconditioner<_Scalar>
/** \ingroup IterativeLinearSolvers_Module
* \brief A naive preconditioner which approximates any matrix as the identity matrix
*
+ * \implsparsesolverconcept
+ *
* \sa class DiagonalPreconditioner
*/
class IdentityPreconditioner