Interface EconomyProvider

All Superinterfaces:
AlgorithmProvider
All Known Implementing Classes:
StandardEconomyProvider

public interface EconomyProvider extends AlgorithmProvider
Provider for economic growth algorithms (Solow, Ramsey, etc.).
  • Method Details

    • evolve

      Real evolve(Real k, EconomyParameters params, double dt, double dW)
      Evolves the capital state using high-precision Real numbers.
    • evolve

      double evolve(double k, EconomyParameters params, double dt, double dW)
      Evolves the capital state using double precision.
    • evolve

      float evolve(float k, EconomyParameters params, float dt, float dW)
      Evolves the capital state using float precision.