aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Cholesky/LLT.h
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2016-04-07 16:28:44 -0700
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2016-04-07 16:28:44 -0700
commitfd872aefb3a9a0e4be08e66671494babdb921c2b (patch)
tree57ff6f1fd30796c3d7b109b81a6d052347cc6204 /Eigen/src/Cholesky/LLT.h
parent0b5546d182928acb428daba0787755180da4b3fc (diff)
Remove transpose() method from LLT and LDLT classes as it would imply conjugation.
Explicitly cast constants to RealScalar in ConditionEstimator.h.
Diffstat (limited to 'Eigen/src/Cholesky/LLT.h')
-rw-r--r--Eigen/src/Cholesky/LLT.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Eigen/src/Cholesky/LLT.h b/Eigen/src/Cholesky/LLT.h
index dc2ccd6a4..f88afe8b5 100644
--- a/Eigen/src/Cholesky/LLT.h
+++ b/Eigen/src/Cholesky/LLT.h
@@ -170,9 +170,8 @@ template<typename _MatrixType, int _UpLo> class LLT
}
/** \returns the decomposition itself to allow generic code to do
- * llt.transpose().solve(rhs).
+ * llt.adjoint().solve(rhs).
*/
- const LLT<MatrixType, UpLo>& transpose() const { return *this; };
const LLT<MatrixType, UpLo>& adjoint() const { return *this; };
inline Index rows() const { return m_matrix.rows(); }