using System; using System.Collections.Generic; using System.Text; namespace RungeKutta.SimStep { public interface SimStepper { State Integrate(State old, float timestep, ODEs.ODE ode); int ForceEvaluations { get; } } }