From 1f25636c64f0a7c07fa268c0d66c084948b2dd15 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 7 Oct 2010 01:47:25 -0400 Subject: Fix order parameter for RKF45. --- src/vZ/RKF45.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vZ') 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::Function Function; GenericRKF45Integrator(Function f) - : GenericAdaptiveIntegrator(f, 3, s_a, s_b, s_bStar) { } + : GenericAdaptiveIntegrator(f, 5, s_a, s_b, s_bStar) { } ~GenericRKF45Integrator() { } private: -- cgit v1.2.3