https://github.com/drhagen/scipy_ode
Collaboration repository for redesigning scipy ODE solvers
https://github.com/drhagen/scipy_ode
Last synced: 2 months ago
JSON representation
Collaboration repository for redesigning scipy ODE solvers
- Host: GitHub
- URL: https://github.com/drhagen/scipy_ode
- Owner: drhagen
- License: bsd-3-clause
- Created: 2016-08-25T21:52:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-01T01:30:14.000Z (over 8 years ago)
- Last Synced: 2025-05-05T21:15:45.406Z (2 months ago)
- Language: Python
- Size: 499 KB
- Stars: 2
- Watchers: 2
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ODE solvers for scipy
This is a collaboration space for the third generation ODE solvers of Scipy. This standalone package depends on scipy and several of its dependencies. It is probably best used as a project in an appropriate IDE as it is an experimental/developmental work-in-progress. All APIs are subject to rapid evolution.### Organization
`scipy_ode/`: The root of the package. All source files for the solvers go here. This will ultimately be merged with `scipy/integrate` or similar substructure.`scipy_ode/tests/`: Contains all tests. All tests are run with this working directory. Tests must import from the absolute path `scipy_ode` until they are ultimately merged back into the main line.
`scipy_ode/__init__.py`: Defines the public interface of `scipy_ode`. Derived from `scipy/integrate/__init__/py`.