pub trait TimeStepper: Send + Sync { // Required method fn step(&mut self, state: &mut StateStore, dt: f64) -> Result<()>; }
Trait for time stepping in simulations
Advance simulation by one step