aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qr_fullpivoting.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-08-24 09:46:17 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-08-24 09:46:17 -0400
commitb8106e97b40b3a4f4653642e9f244bdae058437b (patch)
treecb266d79d5687687f0f374c77cb875fb249ba958 /test/qr_fullpivoting.cpp
parentf31b5a71148387310a55a96158a494e83a19a0e2 (diff)
add logAbsDeterminant()
move log and exp functors from Array to Core update documentation
Diffstat (limited to 'test/qr_fullpivoting.cpp')
-rw-r--r--test/qr_fullpivoting.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/qr_fullpivoting.cpp b/test/qr_fullpivoting.cpp
index d784e0d43..a6430e6f1 100644
--- a/test/qr_fullpivoting.cpp
+++ b/test/qr_fullpivoting.cpp
@@ -99,6 +99,7 @@ template<typename MatrixType> void qr_invertible()
m1 = m3 * m1 * m3;
qr.compute(m1);
VERIFY_IS_APPROX(absdet, qr.absDeterminant());
+ VERIFY_IS_APPROX(ei_log(absdet), qr.logAbsDeterminant());
}
template<typename MatrixType> void qr_verify_assert()