Interface EconomyProvider
- All Superinterfaces:
AlgorithmProvider
- All Known Implementing Classes:
StandardEconomyProvider
Provider for economic growth algorithms (Solow, Ramsey, etc.).
-
Method Summary
Modifier and TypeMethodDescriptiondoubleevolve(double k, EconomyParameters params, double dt, double dW) Evolves the capital state using double precision.floatevolve(float k, EconomyParameters params, float dt, float dW) Evolves the capital state using float precision.evolve(Real k, EconomyParameters params, double dt, double dW) Evolves the capital state using high-precision Real numbers.Methods inherited from interface AlgorithmProvider
description, getAlgorithmType, getMetadata, getName, getPriority, isAvailable, score, shutdown
-
Method Details
-
evolve
Evolves the capital state using high-precision Real numbers. -
evolve
Evolves the capital state using double precision. -
evolve
Evolves the capital state using float precision.
-