From 191d5275a7c59f1a8bcf590479c337a68543f3ad Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 24 Aug 2009 13:46:14 -0400 Subject: modernize HouseholderQR too, uniformize all that stuff, update tests --- test/qr_fullpivoting.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/qr_fullpivoting.cpp') 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 void qr_verify_assert() MatrixType tmp; FullPivotingHouseholderQR 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 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() -- cgit v1.2.3