-
Notifications
You must be signed in to change notification settings - Fork 3
Stochastic Dynamic Programming in Java
Roberto Rossi edited this page Aug 2, 2016
·
48 revisions
We provide an example-driven short introduction to Stochastic Dynamic Programming in Java.
public GamblersRuin(double targetWealth, int betHorizon, double[][] pmf) { this.targetWealth = targetWealth; this.betHorizon = betHorizon; this.pmf = pmf; }