Added a prelude

This commit is contained in:
Connor Johnstone
2023-03-15 15:37:50 -06:00
parent 0f343bdbca
commit d5c8911d21
2 changed files with 9 additions and 9 deletions

View File

@@ -34,10 +34,7 @@ For now, here is a simple example of using the propagator to solve a simple syst
```rust
use nalgebra::Vector3;
use differential_equations::integrator::dormand_prince::DormandPrince45;
use differential_equations::controller::PIController;
use differential_equations::callback::stop;
use differential_equations::problem::*;
use differential_equations::prelude::*;
// Define the system (parameters, derivative, and initial state)
type Params = (f64, bool);