summaryrefslogtreecommitdiffstats
path: root/tests/RKF45.cpp
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-10-07 00:20:36 -0400
committerTavian Barnes <tavianator@gmail.com>2010-10-07 00:20:36 -0400
commit6dd3df3def47d0555a1e78cbe936eb8d083bb756 (patch)
treefcec440d93f8b9ed128761c5edd530b45f6e89c1 /tests/RKF45.cpp
parent90f6cedb9eae73fdf0c44c34874c7e67f39e02c2 (diff)
downloadvz-6dd3df3def47d0555a1e78cbe936eb8d083bb756.tar.xz
Capitalisation.
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) {