bulirsch 0.1.1

Bulirsch-Stoer ODE integration method
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Bulirsch-Stoer Method in Rust

[![Crates.io](https://img.shields.io/crates/v/bulirsch.svg)](https://crates.io/crates/bulirsch)
[![Docs](https://docs.rs/bulirsch/badge.svg)](https://docs.rs/bulirsch)

This crate contains a simple implementation of the Bulirsch-Stoer method for solving ordinary
differential equations.

This crate may be useful in situations where an ODE is being integrated step by step with a
prescribed step size that is not too large relative to the dynamical timescale, for example in
cyber-physical system simulations with a fixed control cycle period. By contrast, routines from the
`ode_solvers` crate can require many more system evaluations to produce the same performance.