diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-06 23:42:05 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-06 23:42:05 -0400 |
commit | ae956bffbf796005e1f59a9c430cef69e21e13f6 (patch) | |
tree | 30f0add7251bdd0dc6f0ff9a5a5cb75ec71bc020 /tests/Makefile.am | |
parent | e4857d7abd64993c18986b7b5f7e3b0c14eb27e0 (diff) | |
download | vz-ae956bffbf796005e1f59a9c430cef69e21e13f6.tar.xz |
Add RKF45 method.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index cab6d98..f6ad25e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -24,7 +24,8 @@ check_PROGRAMS = Euler-test \ Heun-test \ RK4-test \ HE12-test \ - BS23-test + BS23-test \ + RKF45-test TESTS = $(check_PROGRAMS) Euler_test_SOURCES = Euler.cpp @@ -33,3 +34,4 @@ Heun_test_SOURCES = Heun.cpp RK4_test_SOURCES = RK4.cpp HE12_test_SOURCES = HE12.cpp BS23_test_SOURCES = BS23.cpp +RKF45_test_SOURCES = RKF45.cpp |