aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/hessenberg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/hessenberg.cpp')
-rw-r--r--test/hessenberg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hessenberg.cpp b/test/hessenberg.cpp
index 61ff98150..16aa564ae 100644
--- a/test/hessenberg.cpp
+++ b/test/hessenberg.cpp
@@ -49,7 +49,7 @@ template<typename Scalar,int Size> void hessenberg(int size = Size)
HessenbergDecomposition<MatrixType> cs1;
cs1.compute(A);
HessenbergDecomposition<MatrixType> cs2(A);
- VERIFY_IS_EQUAL(cs1.matrixH(), cs2.matrixH());
+ VERIFY_IS_EQUAL(cs1.matrixH().eval(), cs2.matrixH().eval());
MatrixType cs1Q = cs1.matrixQ();
MatrixType cs2Q = cs2.matrixQ();
VERIFY_IS_EQUAL(cs1Q, cs2Q);