aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qr_fullpivoting.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-08-24 13:46:14 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-08-24 13:46:14 -0400
commit191d5275a7c59f1a8bcf590479c337a68543f3ad (patch)
tree1e77beb2a9dc6f396688533dc87e5cbc17ff9b6c /test/qr_fullpivoting.cpp
parent7e4bd70157465c9ed26dffdffe84e890b05cb975 (diff)
modernize HouseholderQR too, uniformize all that stuff, update tests
Diffstat (limited to 'test/qr_fullpivoting.cpp')
-rw-r--r--test/qr_fullpivoting.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/qr_fullpivoting.cpp b/test/qr_fullpivoting.cpp
index bdebea7cc..525c669a5 100644
--- a/test/qr_fullpivoting.cpp
+++ b/test/qr_fullpivoting.cpp
@@ -105,7 +105,7 @@ template<typename MatrixType> void qr_verify_assert()
MatrixType tmp;
FullPivotingHouseholderQR<MatrixType> qr;
- VERIFY_RAISES_ASSERT(qr.matrixR())
+ VERIFY_RAISES_ASSERT(qr.matrixQR())
VERIFY_RAISES_ASSERT(qr.solve(tmp,&tmp))
VERIFY_RAISES_ASSERT(qr.matrixQ())
VERIFY_RAISES_ASSERT(qr.dimensionOfKernel())
@@ -114,6 +114,8 @@ template<typename MatrixType> void qr_verify_assert()
VERIFY_RAISES_ASSERT(qr.isInvertible())
VERIFY_RAISES_ASSERT(qr.computeInverse(&tmp))
VERIFY_RAISES_ASSERT(qr.inverse())
+ VERIFY_RAISES_ASSERT(qr.absDeterminant())
+ VERIFY_RAISES_ASSERT(qr.logAbsDeterminant())
}
void test_qr_fullpivoting()