diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-06 23:05:48 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-06 23:05:48 -0400 |
commit | e4857d7abd64993c18986b7b5f7e3b0c14eb27e0 (patch) | |
tree | 7c772c730fa8e7dd37d97a417f83bfa75fe547cb /src/vZ/Heun.hpp | |
parent | 486a188b074c0c4f3ad771f536159e1bd2045fe2 (diff) | |
download | vz-e4857d7abd64993c18986b7b5f7e3b0c14eb27e0.tar.xz |
Clean up integrator comments.
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> { |