aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qr.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-09-16 14:35:42 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-09-16 14:35:42 +0200
commit49dd5d7847e4439f30de37de8372c9483b63b425 (patch)
tree5fe971b1765d45ef31d096d0527e09af530a946f /test/qr.cpp
parent77f858f6abf0e80eddf33b01d8dd3598be3fd7a3 (diff)
* add a HouseholderSequence class (not good enough yet for Triadiagonalization and HessenbergDecomposition)
* rework a bit AnyMatrixBase, and mobe it to a separate file
Diffstat (limited to 'test/qr.cpp')
-rw-r--r--test/qr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/qr.cpp b/test/qr.cpp
index f2e2eda61..f185ac86e 100644
--- a/test/qr.cpp
+++ b/test/qr.cpp
@@ -78,7 +78,7 @@ template<typename MatrixType> void qr_invertible()
m3 = MatrixType::Random(size,size);
qr.solve(m3, &m2);
VERIFY_IS_APPROX(m3, m1*m2);
-
+
// now construct a matrix with prescribed determinant
m1.setZero();
for(int i = 0; i < size; i++) m1(i,i) = ei_random<Scalar>();