termoshtt / eom

Configurable ODE/PDE solver
MIT License
59 stars 8 forks source link

Simplify TimeEvolution trait #34

Closed termoshtt closed 7 years ago

termoshtt commented 7 years ago
pub trait TimeEvolution<S, D> {
  ...
  fn iterate<'a>(&self, &'a mut ArrayBase<S, D>) -> &'a mut ArrayBase<S, D>;
}

will be enough.