Skip to main content

A simple implementation of backwards induction for solving finite-horizon, finite-state stochastic dynamic programs.

Project description

A simple implementation of backwards induction for solving finite-horizon, finite-space stochastic dynamic programs.

Installation

stochasticdp is available on PyPI:

pip install stochasticdp

Usage

To initialize a stochastic dynamic program:

dp = StochasticDP(number_of_stages, states, decisions, minimize)

where

  • number_of_stages is an integer

  • states is a list

  • decisions is a list

  • minimize is a boolean

This results in a stochastic dynamic program with stages numbered 0, ..., number_of_stages - 1, and initializes the following dictionaries:

  • dp.transition, where dp.transition[m, n, t, x] is the probability of moving from state n to state m in stage t under decision x

  • dp.contribution, where dp.contribution[m, n, t, x] is the immediate contribution of resulting from moving from state n to state m in stage t under decision x

  • dp.boundary, where dp.boundary[n] is the boundary condition for the value-to-go function at state n

To solve the stochastic dynamic program:

value, policy = dp.solve()

where

  • value is a dictionary: value[t, n] is the value-to-go function at stage t and state n

  • policy is a dictionary: policy[t, n] is the optimizer of value[t, n]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stochasticdp-0.2.1.tar.gz (3.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page