aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/matrix_exponential.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-02-27 23:25:14 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-02-27 23:25:14 -0500
commit31621ff0ef5928fc82c2aa6b9064582e9bbf3559 (patch)
treec44872bc59228428a055a5fbd87664061b9089c0 /unsupported/test/matrix_exponential.cpp
parent0b44893b4eb6cf7a2ae48574e78addacd0451c02 (diff)
relax condition in matrix_exponential test for clang
Diffstat (limited to 'unsupported/test/matrix_exponential.cpp')
-rw-r--r--unsupported/test/matrix_exponential.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/test/matrix_exponential.cpp b/unsupported/test/matrix_exponential.cpp
index 17a0dadab..5ea438c2a 100644
--- a/unsupported/test/matrix_exponential.cpp
+++ b/unsupported/test/matrix_exponential.cpp
@@ -145,7 +145,7 @@ void randomTest(const MatrixType& m, double tol)
void test_matrix_exponential()
{
CALL_SUBTEST_2(test2dRotation<double>(1e-13));
- CALL_SUBTEST_1(test2dRotation<float>(1e-5));
+ CALL_SUBTEST_1(test2dRotation<float>(2e-5)); // was 1e-5, relaxed for clang 2.8 / linux / x86-64
CALL_SUBTEST_2(test2dHyperbolicRotation<double>(1e-14));
CALL_SUBTEST_1(test2dHyperbolicRotation<float>(1e-5));
CALL_SUBTEST_6(testPascal<float>(1e-6));