aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-09-04 14:38:42 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-09-04 14:38:42 +0000
commit12e9de4abbe9a4cf9b2812e700ce41bdd0351cb3 (patch)
tree99bddb30ec0fcca250b0a590a04ea922ddd29c46 /Eigen/src/Core
parent6add33e2c22e39a30c2a207e66c950e703287710 (diff)
fix stupid numerical stability issue in SVD::solve (though it is not yet as stable as LU with full pivoting)
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r--Eigen/src/Core/MatrixBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h
index e6af97bb3..a9d15032c 100644
--- a/Eigen/src/Core/MatrixBase.h
+++ b/Eigen/src/Core/MatrixBase.h
@@ -573,7 +573,7 @@ template<typename Derived> class MatrixBase
/////////// SVD module ///////////
- const SVD<EvalType> svd() const;
+ SVD<EvalType> svd() const;
/////////// Geometry module ///////////