aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/SVD
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-06-09 17:11:03 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-06-09 17:11:03 +0200
commitc1f9ca925405c8fad126f327b4bdca7f983fc96e (patch)
tree06f6cb2be66d89cc553426d335a8c3ee6b0c4689 /Eigen/SVD
parent15890c304edbccedc8a989468ed3fc475f428059 (diff)
Update RealQZ to reduce 2x2 diagonal block of T corresponding to non reduced diagonal block of S to positive diagonal form.
This step involve a real 2x2 SVD problem. The respective routine is thus in src/misc/ to be shared by both EVD and AVD modules.
Diffstat (limited to 'Eigen/SVD')
-rw-r--r--Eigen/SVD1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/SVD b/Eigen/SVD
index b353f3f54..565d9c90d 100644
--- a/Eigen/SVD
+++ b/Eigen/SVD
@@ -31,6 +31,7 @@
* \endcode
*/
+#include "src/misc/RealSvd2x2.h"
#include "src/SVD/UpperBidiagonalization.h"
#include "src/SVD/SVDBase.h"
#include "src/SVD/JacobiSVD.h"