Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Odeint with in-house Runge-Kutta 4th order integrator #138

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ src/utils/*.cpp licensefile=.githooks/LICENSE-C++
src/utils/cnpy.hpp !licensefile
src/utils/cnpy.cpp !licensefile
src/utils/Legendre.hpp !licensefile
src/utils/RungeKutta4.* !licensefile
src/utils/RungeKutta.hpp !licensefile

# tests
tests/unit_tests.cpp licensefile=.githooks/LICENSE-C++
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
- The `ENABLE_Fortran_API` configuration option has been renamed
`TEST_Fortran_API`, since it now only triggers compilation of the
`Fortran_host` test case.
- The implementation of the `RadialSolution` for the second order ODE
associated with the spherical diffuse Green's function is less heavily
`template`-d.
- The dependency on Boost.Odeint has been dropped.

## [Version 1.2.0-rc1] - 2018-03-02

Expand Down
Loading