summaryrefslogtreecommitdiffstats
path: root/tests/RKF45.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/RKF45.cpp')
-rw-r--r--tests/RKF45.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/RKF45.cpp b/tests/RKF45.cpp
index 1ac3e4f..e2764cf 100644
--- a/tests/RKF45.cpp
+++ b/tests/RKF45.cpp
@@ -26,8 +26,8 @@ main()
<< "Numerical: " << actual << std::endl
<< "Expected: " << expected << std::endl
<< "h: " << integrator.h() << std::endl
- << "iterations: " << integrator.iterations() << std::endl
- << "rejections: " << integrator.rejections() << std::endl;
+ << "Iterations: " << integrator.iterations() << std::endl
+ << "Rejections: " << integrator.rejections() << std::endl;
double error = std::fabs(expected - actual)/expected;
if (error > 1.5e-6) {