using System; using System.Collections.Generic; using System.Text; namespace RungeKutta.ODEs { public interface ODE { float A { get; set; } float B { get; set; } float C { get; set; } /// /// Updates the state's acceleration given its position and velocity /// float EvaluateForceAtState(State state); } }