Skip to content

Commit

Permalink
Update rebound to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdempsey90 committed Nov 26, 2024
1 parent 80cadf7 commit 802a8d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/rebound
Submodule rebound updated 93 files
+3 −0 .github/ISSUE_TEMPLATE/advice.md
+3 −0 .github/ISSUE_TEMPLATE/bug_report.md
+3 −0 .github/ISSUE_TEMPLATE/feature_request.md
+1 −1 .github/ISSUE_TEMPLATE/question.md
+2 −2 .github/workflows/build_wheels.yml
+4 −2 .github/workflows/python.yml
+2 −2 .github/workflows/reboundx.yml
+2 −0 MANIFEST.in
+2 −11 README.md
+20 −0 changelog.md
+3 −1 docs/boundaryconditions.md
+ docs/img/reb24flyer.png
+1 −10 docs/index.md
+155 −0 docs/integrators.md
+35 −0 examples/simulationarchive_fields/Makefile
+255 −0 examples/simulationarchive_fields/problem.c
+39 −0 examples/whfast512_unittests/problem.c
+13 −12 ipython_examples/CloseEncounters.ipynb
+9 −9 ipython_examples/EccentricComets.ipynb
+47 −30 ipython_examples/HybridIntegrationsWithTRACE.ipynb
+2 −3 ipython_examples/PoincareMap.ipynb
+2 −1 ipython_examples/SaturnsRings.ipynb
+24 −26 ipython_examples/Starman.ipynb
+1 −0 mkdocs.yml
+0 −2 python_examples/longtermtest/problem.py
+0 −1 python_examples/megno/problem.py
+0 −1 python_examples/outersolarsystem/problem.py
+0 −1 python_examples/simulationarchive/problem.py
+1 −1 rebound/__init__.py
+22 −0 rebound/citations.py
+8 −3 rebound/horizons.py
+125 −0 rebound/integrators/trace.py
+72 −6 rebound/particle.py
+0 −1 rebound/plotting.py
+25 −26 rebound/simulation.py
+11 −3 rebound/simulationarchive.py
+0 −1 rebound/tests/test_additional_forces.py
+0 −1 rebound/tests/test_bs.py
+0 −3 rebound/tests/test_copy.py
+0 −1 rebound/tests/test_data.py
+0 −1 rebound/tests/test_gravity.py
+0 −1 rebound/tests/test_hash.py
+0 −1 rebound/tests/test_horizons.py
+0 −1 rebound/tests/test_janus.py
+1 −3 rebound/tests/test_mercurius.py
+0 −1 rebound/tests/test_modify_orbital_parameters.py
+0 −1 rebound/tests/test_orbital_elements.py
+0 −1 rebound/tests/test_pickle.py
+0 −1 rebound/tests/test_post_timestep_modifications.py
+0 −1 rebound/tests/test_restart_mercurius.py
+0 −1 rebound/tests/test_rotations.py
+0 −2 rebound/tests/test_serialize.py
+1 −1 rebound/tests/test_server.py
+2 −1 rebound/tests/test_shearingsheet.py
+0 −5 rebound/tests/test_simulation.py
+488 −0 rebound/tests/test_trace.py
+54 −0 rebound/tests/test_trace_basic.py
+458 −0 rebound/tests/test_trace_full_bs.py
+451 −0 rebound/tests/test_trace_full_ias15.py
+8 −8 rebound/tests/test_transformations.py
+0 −1 rebound/tests/test_units.py
+0 −1 rebound/tests/test_variational.py
+0 −1 rebound/tests/test_whfast_testparticles.py
+1 −2 rebound/tools.py
+1 −0 rebound/units.py
+1 −2 rebound/widget.py
+3 −2 setup.py
+1 −1 src/Makefile
+3 −0 src/binarydiff.c
+51 −2 src/collision.c
+2 −2 src/fmemopen.c
+239 −1 src/gravity.c
+9 −8 src/input.c
+34 −1 src/integrator.c
+12 −7 src/integrator_bs.c
+1 −0 src/integrator_bs.h
+9 −0 src/integrator_ias15.c
+902 −0 src/integrator_trace.c
+33 −0 src/integrator_trace.h
+132 −106 src/integrator_whfast512.c
+1 −0 src/integrator_whfast512.h
+9 −3 src/output.c
+49 −0 src/particle.c
+23 −2 src/rebound.c
+62 −2 src/rebound.h
+1 −1 src/rotations.c
+77 −18 src/simulationarchive.c
+5 −6 src/tools.c
+0 −1 update_version.py
+1 −1 version.txt
+1 −1 web_client/shell_rebound.html
+1 −1 web_client/shell_rebound_console.html
+1 −1 web_client/shell_rebound_webgl.html

0 comments on commit 802a8d7

Please sign in to comment.