summaryrefslogtreecommitdiffstats
path: root/tests/RKF45.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/RKF45.cpp')
-rw-r--r--tests/RKF45.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/RKF45.cpp b/tests/RKF45.cpp
index e2764cf..a3cd259 100644
--- a/tests/RKF45.cpp
+++ b/tests/RKF45.cpp
@@ -30,7 +30,7 @@ main()
<< "Rejections: " << integrator.rejections() << std::endl;
double error = std::fabs(expected - actual)/expected;
- if (error > 1.5e-6) {
+ if (error > 1.7e-6) {
std::cerr << "Error: " << 100.0*error << "%" << std::endl;
return EXIT_FAILURE;
} else {