diff options
Diffstat (limited to 'src/vZ/Heun.hpp')
-rw-r--r-- | src/vZ/Heun.hpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/vZ/Heun.hpp b/src/vZ/Heun.hpp index 5e697af..7de2f40 100644 --- a/src/vZ/Heun.hpp +++ b/src/vZ/Heun.hpp @@ -32,11 +32,7 @@ namespace vZ // 0 | // 1 | 1 // --+--------- - // | 1/2 1/2 - // - // k1 = dt*f(y[n]) - // k2 = dt*f(y[n] + dt*k1) - // y[n + 1] = y[n] + 1/2*(k1 + k2) + // b | 1/2 1/2 template <typename Y> class GenericHeunIntegrator : public GenericSimpleIntegrator<Y> { |