Interface ODESolver
-
- All Known Implementing Classes:
AdamsBashforthMoulton
,BurlischStoerExtrapolation
,EulerMethod
,RungeKutta
,RungeKuttaFehlberg
,SemiImplicitExtrapolation
public interface ODESolver
Solver for first order ODE problems.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ODESolution
solve(ODE1stOrder ode)
Solves the given ODE problem.
-
-
-
Method Detail
-
solve
ODESolution solve(ODE1stOrder ode)
Solves the given ODE problem.- Parameters:
ode
- the ODE problem- Returns:
- the solution
-
-