aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Cholesky
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/Cholesky')
-rw-r--r--Eigen/Cholesky6
1 files changed, 4 insertions, 2 deletions
diff --git a/Eigen/Cholesky b/Eigen/Cholesky
index f5bcec52d..ddde61a31 100644
--- a/Eigen/Cholesky
+++ b/Eigen/Cholesky
@@ -17,8 +17,8 @@ namespace Eigen {
/** \defgroup Cholesky_Module Cholesky module
* This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
* Those decompositions are accessible via the following MatrixBase methods:
- * - MatrixBase::cholesky(),
- * - MatrixBase::choleskyNoSqrt()
+ * - MatrixBase::llt(),
+ * - MatrixBase::ldlt()
*
* \code
* #include <Eigen/Cholesky>
@@ -27,6 +27,8 @@ namespace Eigen {
#include "src/Array/CwiseOperators.h"
#include "src/Array/Functors.h"
+#include "src/Cholesky/LLT.h"
+#include "src/Cholesky/LDLT.h"
#include "src/Cholesky/Cholesky.h"
#include "src/Cholesky/CholeskyWithoutSquareRoot.h"