aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Cholesky
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-07 15:56:13 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-07 15:56:13 +0200
commitea23f36c7843854cfcfc3fbfec4b65c935e56456 (patch)
tree6723089aac985104606b8ed3096b78d500b341d5 /Eigen/src/Cholesky
parent79877a9917c6482930ef2ac15e2de7ef8a7a757e (diff)
* change the nesting order of adjoint_return_type to
1 - make it easier to catch conjugate expressions 2 - make sure there is no unecessary copy (we had NestByValue<Derived> which seems to be very bad) * update eigensolver wrt recent changes
Diffstat (limited to 'Eigen/src/Cholesky')
-rw-r--r--Eigen/src/Cholesky/LLT.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Cholesky/LLT.h b/Eigen/src/Cholesky/LLT.h
index 53e97cd3f..4527067a8 100644
--- a/Eigen/src/Cholesky/LLT.h
+++ b/Eigen/src/Cholesky/LLT.h
@@ -116,7 +116,7 @@ template<typename MatrixType, int _UpLo> class LLT
bool m_isInitialized;
};
-template<typename MatrixType/*, int UpLo*/>
+template<typename MatrixType>
bool ei_inplace_llt_lo(MatrixType& mat)
{
typedef typename MatrixType::Scalar Scalar;
@@ -157,7 +157,7 @@ bool ei_inplace_llt_lo(MatrixType& mat)
return true;
}
-template<typename MatrixType/*, int UpLo*/>
+template<typename MatrixType>
bool ei_inplace_llt_up(MatrixType& mat)
{
typedef typename MatrixType::Scalar Scalar;