ida 0.1.1

A pure Rust port of the Implicit Differential-Algebraic solver from the Sundials suite.
Documentation
1
2
3
4
5
6
7
//! Example problems for testing, benchmarks and demonstration

mod roberts;
mod slider_crank;

pub use roberts::Roberts;
pub use slider_crank::SlCrank;