catlog/simulate/
mod.rs

1/*! Simulation of dynamical systems.
2
3"Modeling and simulation" is a major part of science and engineering. The
4purpose of the `catlog` crate is to specify models using the machinery of
5double-categorical logic. This module simulates dynamical systems derived from
6models. It is intended as a stopgap pending interoperation with a language
7having a better scientific computing ecosystem than Rust, such as Julia.
8However, if it does stick around it should eventually become its own crate. For
9now it's convenient to keep everything in the same place.
10 */
11
12#[cfg(feature = "ode")]
13pub mod ode;