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
448d8818
Commit
448d8818
authored
Jan 25, 2013
by
Steven Cordwell
Browse files
rearrange tests into alphabetical order
parent
7d502a3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
test_mdptoolbox.py
View file @
448d8818
...
...
@@ -212,25 +212,6 @@ def test_MDP_P_R_3():
a
=
MDP
(
P
,
R
,
0.9
,
0.01
,
1
)
assert
(
absolute
(
a
.
R
-
PR
)
<
SMALLNUM
).
all
()
# ValueIteration
def
test_ValueIteration_boundIter
():
inst
=
ValueIteration
(
P
,
R
,
0.9
,
0.01
)
assert
(
inst
.
max_iter
==
28
)
def
test_ValueIteration_iterate
():
inst
=
ValueIteration
(
P
,
R
,
0.9
,
0.01
)
inst
.
iterate
()
assert
(
inst
.
V
==
(
40.048625392716822
,
33.65371175967546
))
assert
(
inst
.
policy
==
(
1
,
0
))
assert
(
inst
.
iter
==
26
)
def
test_ValueIteration_exampleForest
():
a
=
ValueIteration
(
Pf
,
Rf
,
0.96
)
a
.
iterate
()
assert
(
a
.
policy
==
array
([
0
,
0
,
0
])).
all
()
assert
a
.
iter
==
4
# PolicyIteration
def
test_PolicyIteration_init_policy0
():
...
...
@@ -296,6 +277,41 @@ def test_PolicyIteration_matrix_exampleForest():
assert
(
array
(
a
.
policy
)
==
p
).
all
()
assert
a
.
iter
==
itr
# QLearning
def
test_QLearning_exampleForest
():
pass
# RelativeValueIteration
def
test_RelativeValueIteration_exampleForest
():
a
=
RelativeValueIteration
(
Pf
,
Rf
)
itr
=
4
p
=
matrix
(
'0 0 0'
)
v
=
matrix
(
'-4.360000000000000 -0.760000000000000 3.240000000000000'
)
a
.
iterate
()
assert
(
array
(
a
.
policy
)
==
p
).
all
()
assert
a
.
iter
==
itr
assert
(
absolute
(
array
(
a
.
V
)
-
v
)
<
SMALLNUM
).
all
()
# ValueIteration
def
test_ValueIteration_boundIter
():
inst
=
ValueIteration
(
P
,
R
,
0.9
,
0.01
)
assert
(
inst
.
max_iter
==
28
)
def
test_ValueIteration_iterate
():
inst
=
ValueIteration
(
P
,
R
,
0.9
,
0.01
)
inst
.
iterate
()
assert
(
inst
.
V
==
(
40.048625392716822
,
33.65371175967546
))
assert
(
inst
.
policy
==
(
1
,
0
))
assert
(
inst
.
iter
==
26
)
def
test_ValueIteration_exampleForest
():
a
=
ValueIteration
(
Pf
,
Rf
,
0.96
)
a
.
iterate
()
assert
(
a
.
policy
==
array
([
0
,
0
,
0
])).
all
()
assert
a
.
iter
==
4
# ValueIterationGS
def
test_ValueIterationGS_boundIter_exampleForest
():
...
...
@@ -313,18 +329,6 @@ def test_ValueIterationGS_exampleForest():
assert
a
.
iter
==
itr
assert
(
absolute
(
array
(
a
.
V
)
-
v
)
<
SMALLNUM
).
all
()
# RelativeValueIteration
def
test_RelativeValueIteration_exampleForest
():
a
=
RelativeValueIteration
(
Pf
,
Rf
)
itr
=
4
p
=
matrix
(
'0 0 0'
)
v
=
matrix
(
'-4.360000000000000 -0.760000000000000 3.240000000000000'
)
a
.
iterate
()
assert
(
array
(
a
.
policy
)
==
p
).
all
()
assert
a
.
iter
==
itr
assert
(
absolute
(
array
(
a
.
V
)
-
v
)
<
SMALLNUM
).
all
()
#def test_JacksCarRental():
# S = 21 ** 2
# A = 11
...
...
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