This repository contains simple Python implementations of some numerical solvers for ODEs.
The package is currently not distributed anywhere.
You can clone the repository and do the following:
- Create virtual environment:
$ cd <project-home>
$ python3 -m venv .env
- Activate virtual environment
$ source .env/bin/activate
- Install package for testing in the virtual environment
$ python3 setup.py develop
- Import the package and use it!