diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-07 01:47:25 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-07 01:47:25 -0400 |
commit | 1f25636c64f0a7c07fa268c0d66c084948b2dd15 (patch) | |
tree | b95e27a44beb05c27610fd6c44aa428ce25d935c /src | |
parent | 6dd3df3def47d0555a1e78cbe936eb8d083bb756 (diff) | |
download | vz-1f25636c64f0a7c07fa268c0d66c084948b2dd15.tar.xz |
Fix order parameter for RKF45.
Diffstat (limited to 'src')
-rw-r--r-- | src/vZ/RKF45.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vZ/RKF45.hpp b/src/vZ/RKF45.hpp index 5d40b88..5c558b7 100644 --- a/src/vZ/RKF45.hpp +++ b/src/vZ/RKF45.hpp @@ -45,7 +45,7 @@ namespace vZ typedef typename GenericAdaptiveIntegrator<Y>::Function Function; GenericRKF45Integrator(Function f) - : GenericAdaptiveIntegrator<Y>(f, 3, s_a, s_b, s_bStar) { } + : GenericAdaptiveIntegrator<Y>(f, 5, s_a, s_b, s_bStar) { } ~GenericRKF45Integrator() { } private: |