diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-07 00:20:36 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-07 00:20:36 -0400 |
commit | 6dd3df3def47d0555a1e78cbe936eb8d083bb756 (patch) | |
tree | fcec440d93f8b9ed128761c5edd530b45f6e89c1 /tests/HE12.cpp | |
parent | 90f6cedb9eae73fdf0c44c34874c7e67f39e02c2 (diff) | |
download | vz-6dd3df3def47d0555a1e78cbe936eb8d083bb756.tar.xz |
Capitalisation.
Diffstat (limited to 'tests/HE12.cpp')
-rw-r--r-- | tests/HE12.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/HE12.cpp b/tests/HE12.cpp index 9a22d20..99b4ad3 100644 --- a/tests/HE12.cpp +++ b/tests/HE12.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 > 8.7e-7) { |