Interface WaveProvider
- All Superinterfaces:
AlgorithmProvider
- All Known Implementing Classes:
MulticoreWaveProvider
Interface for Wave Equation simulation providers.
- 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()voidsolve(double[][] u, double[][] uPrev, int width, int height, double c, double damping) voidsolve(float[][] u, float[][] uPrev, int width, int height, float c, float damping) voidMethods inherited from interface AlgorithmProvider
description, getMetadata, getPriority, isAvailable, score, shutdown
-
Method Details
-
solve
void solve(float[][] u, float[][] uPrev, int width, int height, float c, float damping) -
solve
void solve(double[][] u, double[][] uPrev, int width, int height, double c, double damping) -
solve
-
getName
- Specified by:
getNamein interfaceAlgorithmProvider
-
getAlgorithmType
Description copied from interface:AlgorithmProviderReturns the unique category of the algorithm.- Specified by:
getAlgorithmTypein interfaceAlgorithmProvider
-