aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lu.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-12-08 00:05:03 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-12-08 00:05:03 +0100
commitefaf03bf96bdde4fc48ca7aacb1043bb5ae09b74 (patch)
tree8092c3ad04bbadfc42b98e8023e1586d1de0bde1 /test/lu.cpp
parent956678a4eff96979ab2139e9ce14f98bb820aa9d (diff)
Fix noise in lu unit test
Diffstat (limited to 'test/lu.cpp')
-rw-r--r--test/lu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lu.cpp b/test/lu.cpp
index effde6060..24bea784a 100644
--- a/test/lu.cpp
+++ b/test/lu.cpp
@@ -90,7 +90,7 @@ template<typename MatrixType> void lu_non_invertible()
VERIFY(!lu.isInjective());
VERIFY(!lu.isInvertible());
VERIFY(!lu.isSurjective());
- VERIFY((m1 * m1kernel).isMuchSmallerThan(m1));
+ VERIFY_IS_MUCH_SMALLER_THAN((m1 * m1kernel), m1);
VERIFY(m1image.fullPivLu().rank() == rank);
VERIFY_IS_APPROX(m1 * m1.adjoint() * m1image, m1image);