aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/prec_inverse_4x4.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-06-01 09:01:39 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-06-01 09:01:39 -0400
commit3e95609cd4f036ccb647f9a590062cdb250e9760 (patch)
tree528103ec93fdfe883333270b3ec6c2a014391279 /test/prec_inverse_4x4.cpp
parent641d968a9a7ed57a3b8a3f45dea43c5ee6717f97 (diff)
Diffstat (limited to 'test/prec_inverse_4x4.cpp')
-rw-r--r--test/prec_inverse_4x4.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/prec_inverse_4x4.cpp b/test/prec_inverse_4x4.cpp
index 05dbee7b5..4150caec2 100644
--- a/test/prec_inverse_4x4.cpp
+++ b/test/prec_inverse_4x4.cpp
@@ -64,9 +64,7 @@ template<typename MatrixType> void inverse_general_4x4(int repeat)
double error_avg = error_sum / repeat;
EIGEN_DEBUG_VAR(error_avg);
EIGEN_DEBUG_VAR(error_max);
- // FIXME that 1.3 used to be a 1.0 until the NumTraits changes on 28 April 2010, and then a 1.2 until the ReturnByValue/Inverse changes
- // on 30 May 2010, what's going wrong (if anything) ??
- VERIFY(error_avg < (NumTraits<Scalar>::IsComplex ? 8.0 : 1.3));
+ VERIFY(error_avg < (NumTraits<Scalar>::IsComplex ? 8.0 : 1.2)); // FIXME that 1.2 used to be a 1.0 until the NumTraits changes on 28 April 2010, what's going wrong??
VERIFY(error_max < (NumTraits<Scalar>::IsComplex ? 64.0 : 20.0));
}