summaryrefslogtreecommitdiffstats
path: root/tests/RKF45.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/RKF45.cpp')
-rw-r--r--tests/RKF45.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/RKF45.cpp b/tests/RKF45.cpp
index 164aba3..11ee539 100644
--- a/tests/RKF45.cpp
+++ b/tests/RKF45.cpp
@@ -23,11 +23,11 @@
#include <iostream>
#include <iomanip>
-// y' = y (y == C*exp(x))
+// y' = x*y (y == C*exp(x^2/2))
double
f(double x, double y)
{
- return y;
+ return x*y;
}
int
@@ -52,7 +52,7 @@ main()
<< "Rejections: " << integrator.rejections() << std::endl;
double error = std::abs(expected - actual)/std::abs(expected);
- if (error > 1.7e-6 || !std::isfinite(error)) {
+ if (error > 1.1e-5 || !std::isfinite(error)) {
std::cerr << "Error: " << 100.0*error << "%" << std::endl;
return EXIT_FAILURE;
} else {