summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-05-18 21:18:07 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-05-18 21:18:07 +0200
commit181eb20bbf15cf11baaf6112b6965050c49dd543 (patch)
tree508d503f735f9edf4aed939dbc20ef66ffc18b55 /test/correctness
parentd91356a6b7f13fa1acd4395b217bb8a273ff8f70 (diff)
parent9a061528eb006f6a59b8bdc12c0e802bd28941cf (diff)
Merge pull request #60 from CNugteren/development
Update to version 0.7.1
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/tester.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/tester.cc b/test/correctness/tester.cc
index 26c4ba59..85ae7091 100644
--- a/test/correctness/tester.cc
+++ b/test/correctness/tester.cc
@@ -334,7 +334,7 @@ bool TestSimilarity(const T val1, const T val2) {
// Set the allowed error margin for floating-point comparisons
constexpr auto kErrorMarginRelative = T(0.025);
- constexpr auto kErrorMarginAbsolute = T(1.0e-4);
+ constexpr auto kErrorMarginAbsolute = T(1.0e-3);
// Shortcut, handles infinities
if (val1 == val2) {