Interface ODEProvider
- All Superinterfaces:
AlgorithmProvider
- All Known Implementing Classes:
RungeKuttaODEProvider
Interface for Ordinary Differential Equation (ODE) solvers.
- Since:
- 1.2
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Method Summary
Modifier and TypeMethodDescriptiondefault StringReturns the unique category of the algorithm.default StringgetName()double[]solve(BiFunction<Double, double[], double[]> f, double[] y0, double t0, double t1, int steps) float[]solve(BiFunction<Float, float[], float[]> f, float[] y0, float t0, float t1, int steps) Real[]Methods inherited from interface AlgorithmProvider
description, getMetadata, getPriority, isAvailable, score, shutdown
-
Method Details
-
solve
-
solve
double[] solve(BiFunction<Double, double[], double[]> f, double[] y0, double t0, double t1, int steps) -
solve
-
getName
- Specified by:
getNamein interfaceAlgorithmProvider
-
getAlgorithmType
Description copied from interface:AlgorithmProviderReturns the unique category of the algorithm.- Specified by:
getAlgorithmTypein interfaceAlgorithmProvider
-