Skip to main content

diffeq/
lib.rs

1#![allow(unused)]
2#[macro_use]
3extern crate derive_builder;
4
5extern crate nalgebra as na;
6
7/// Every equation should hav a Problem type, a solution type, and the same solution handling setup.
8pub mod error;
9pub mod ode;