aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/householder.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-01-07 22:03:58 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-01-07 22:03:58 -0500
commit44ed79fc3c4ae0826bcd36164601194d12e32f29 (patch)
treed7b543e9a1b5e0d5f2d1e17ea945f739c9845a45 /test/householder.cpp
parentb05f59ee07d1d245db7ef6d6b1ba5c371e9b12e4 (diff)
finally, undo this
Diffstat (limited to 'test/householder.cpp')
-rw-r--r--test/householder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/householder.cpp b/test/householder.cpp
index 85492cdff..4e4c78863 100644
--- a/test/householder.cpp
+++ b/test/householder.cpp
@@ -79,7 +79,7 @@ template<typename MatrixType> void householder(const MatrixType& m)
m3.rowwise() = v1.transpose();
m4 = m3;
m3.row(0).makeHouseholder(essential, beta, alpha);
- m3.applyHouseholderOnTheRight(essential.transpose(),beta,tmp);
+ m3.applyHouseholderOnTheRight(essential,beta,tmp);
VERIFY_IS_APPROX(m3.norm(), m4.norm());
VERIFY_IS_MUCH_SMALLER_THAN(m3.block(0,1,rows,rows-1).norm(), m3.norm());
VERIFY_IS_MUCH_SMALLER_THAN(ei_imag(m3(0,0)), ei_real(m3(0,0)));