aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_notemporary.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-09-03 11:39:44 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-09-03 11:39:44 +0200
commita54b99fa72e34a4ed6da643f32517a43a4ae76b6 (patch)
treec5a10291aee09f2f910f9c4aa358a7cf71f1180a /test/product_notemporary.cpp
parent9515b00876ab8e84ae4beb61e8661400ebb49522 (diff)
move eigen values related stuff of the QR module to a new EigenSolver module.
- perhaps we can find a better name ? - note that the QR module still includes the EigenSolver module for compatibility
Diffstat (limited to 'test/product_notemporary.cpp')
-rw-r--r--test/product_notemporary.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/product_notemporary.cpp b/test/product_notemporary.cpp
index 3b0329f43..1a3d65291 100644
--- a/test/product_notemporary.cpp
+++ b/test/product_notemporary.cpp
@@ -71,8 +71,6 @@ template<typename MatrixType> void product_notemporary(const MatrixType& m)
VERIFY_EVALUATION_COUNT( m3 = (m1 * m2.adjoint()), 1);
VERIFY_EVALUATION_COUNT( m3.noalias() = m1 * m2.adjoint(), 0);
- // NOTE in this case the slow product is used:
- // FIXME:
VERIFY_EVALUATION_COUNT( m3.noalias() = s1 * (m1 * m2.transpose()), 0);
VERIFY_EVALUATION_COUNT( m3.noalias() = s1 * m1 * s2 * m2.adjoint(), 0);