aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/jacobisvd.cpp
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-01-11 13:57:50 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-01-11 13:57:50 +0100
commit325da2ea3c00436a042468b77cf97ac6b61baf7d (patch)
tree15644f49c1697d74e66c1976a4ef8e450da37b81 /test/jacobisvd.cpp
parent376341de4a46e4f6bf757b863c18b8246ba5a252 (diff)
Fixed conservativeResize.
Fixed multiple overloads for operator=. Removed debug output.
Diffstat (limited to 'test/jacobisvd.cpp')
-rw-r--r--test/jacobisvd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/jacobisvd.cpp b/test/jacobisvd.cpp
index 587bc7572..c8a1495d2 100644
--- a/test/jacobisvd.cpp
+++ b/test/jacobisvd.cpp
@@ -54,8 +54,8 @@ template<typename MatrixType, unsigned int Options> void svd(const MatrixType& m
MatrixUType u = svd.matrixU();
MatrixVType v = svd.matrixV();
- std::cout << "a\n" << a << std::endl;
- std::cout << "b\n" << u * sigma * v.adjoint() << std::endl;
+ //std::cout << "a\n" << a << std::endl;
+ //std::cout << "b\n" << u * sigma * v.adjoint() << std::endl;
VERIFY_IS_APPROX(a, u * sigma * v.adjoint());
VERIFY_IS_UNITARY(u);