Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
pymdptoolbox
Commits
40b39d86
Commit
40b39d86
authored
Jan 20, 2013
by
Steven Cordwell
Browse files
raise NotImplementedError in classes that have no working code
parent
1b0301dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
mdp.py
View file @
40b39d86
...
...
@@ -486,12 +486,12 @@ class MDP(object):
class
FiniteHorizon
(
MDP
):
"""Resolution of finite-horizon MDP with backwards induction.
"""
pass
raise
NotImplementedError
(
"This class has not been implemented yet."
)
class
LP
(
MDP
):
"""Resolution of discounted MDP with linear programming.
"""
pass
raise
NotImplementedError
(
"This class has not been implemented yet."
)
class
PolicyIteration
(
MDP
):
"""Resolution of discounted MDP with policy iteration algorithm.
...
...
@@ -791,7 +791,7 @@ class RelativeValueIteration(MDP):
"""Resolution of MDP with average reward with relative value iteration
algorithm.
"""
pass
raise
NotImplementedError
(
"This class has not been implemented yet."
)
class
ValueIteration
(
MDP
):
"""
...
...
@@ -1018,4 +1018,4 @@ class ValueIteration(MDP):
class
ValueIterationGS
(
MDP
):
"""Resolution of discounted MDP with value iteration Gauss-Seidel algorithm.
"""
pass
\ No newline at end of file
raise
NotImplementedError
(
"This class has not been implemented yet."
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment