From 0544c8ceeb50995d3e63939d59f11c589251e283 Mon Sep 17 00:00:00 2001 From: Steven Cordwell Date: Sat, 26 Jan 2013 12:06:06 +1000 Subject: [PATCH] Preparations for v0.14 tagging New issue Summary: Incomplete and inaccurate documentation Status: Started Labels: Type-Defect Priority-Critical Milestone-Release4.0 Usability The documentation needs to be finished being ported for the Python implementation. It also has spelling and grammar errors that should be fixed. There are some features that are not documented or documented incorrectly. --- HISTORY | 8 ++++++++ NEWS | 5 +++++ setup.py | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 8cacc65..f3a385a 100644 --- a/HISTORY +++ b/HISTORY @@ -1,3 +1,11 @@ +2013-01-26 +v0.14 - the linear programming code has been finalised, however there is currently no way to turn of the progress status of the + lp solver from the cvxopt module. One unit test has been written. To use linear programming method: + >>> import mdp + >>> P, R = mdp.exampleForest() + >>> lp = mdp.LP(P, R, 0.9) + >>> lp.iterate() # and after some output from cvxopt.solvers.lp the optimal policy can be shown with lp.policy + 2013-01-25 v0.13 - the FiniteHorizon class has been fixed. No unit tests yet. >>> import mdp diff --git a/NEWS b/NEWS index e69de29..c13ad90 100644 --- a/NEWS +++ b/NEWS @@ -0,0 +1,5 @@ +2013-01-26 +The release of v0.14 will be made today. With this all the functionality should be available to use. The initial version release +of 4.0 will be made once the documentation has been finalised and unit tests have been written to cover all of the classes. +The first release will be 4.0 to match the MATLAB/Octave/Scilab/R MDP Toolboxes that are available at +http://www.inra.fr/mia/T/MDPtoolbox/ diff --git a/setup.py b/setup.py index 1f18c5f..2e7dcdb 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup setup(name="PyMDPtoolbox", - version="0.13", + version="0.14", description="Python Markov Decision Problem Toolbox", author="Steven Cordwell", author_email="steven.cordwell@uqconnect.edu.au", -- GitLab