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
940c3c72
Commit
940c3c72
authored
Feb 08, 2013
by
Steven Cordwell
Browse files
add tests for new ability to accept lists and tuples to check()
parent
107d1973
Changes
1
Hide whitespace changes
Inline
Side-by-side
test_mdptoolbox.py
View file @
940c3c72
...
...
@@ -76,6 +76,15 @@ def test_check_P_square_stochastic_nonnegative_object_sparse():
P
[
a
]
=
speye
(
STATES
,
STATES
).
tocsr
()
assert
(
check
(
P
,
R
)
==
None
)
# check: P - square, stochastic and non-negative lists
def
test_check_P_square_stochastic_nonnegative_list_array
():
P
=
[]
R
=
rand
(
STATES
,
ACTIONS
)
for
a
in
xrange
(
ACTIONS
):
P
.
append
(
eye
(
STATES
))
assert
(
check
(
P
,
R
)
==
None
)
# check: R - square stochastic and non-negative sparse
def
test_check_R_square_stochastic_nonnegative_sparse
():
...
...
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