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
67d4667a
Commit
67d4667a
authored
Mar 11, 2014
by
Steven Cordwell
Browse files
rename utils module to util
parent
6fd9a818
Changes
3
Show whitespace changes
Inline
Side-by-side
src/mdptoolbox/__init__.py
View file @
67d4667a
...
...
@@ -11,7 +11,7 @@ example
Examples of transition and reward matrices that form valid MDPs
mdp
Makov decision process algorithms
util
s
util
Functions for validating and working with an MDP
How to use the documentation
...
...
@@ -84,4 +84,4 @@ if __name__ == "__main__":
import
doctest
doctest
.
testfile
(
"example.py"
,
module_relative
=
True
)
doctest
.
testfile
(
"mdp.py"
,
module_relative
=
True
)
doctest
.
testfile
(
"util
s
.py"
,
module_relative
=
True
)
doctest
.
testfile
(
"util.py"
,
module_relative
=
True
)
src/mdptoolbox/mdp.py
View file @
67d4667a
...
...
@@ -64,7 +64,7 @@ from numpy import absolute, array, empty, mean, mod, multiply, ones, zeros
from
numpy.random
import
randint
,
random
from
scipy.sparse
import
csr_matrix
as
sparse
from
.util
s
import
check
,
getSpan
from
.util
import
check
,
getSpan
MSG_STOP_MAX_ITER
=
"Iterating stopped due to maximum number of iterations "
\
"condition."
...
...
src/mdptoolbox/util
s
.py
→
src/mdptoolbox/util.py
View file @
67d4667a
File moved
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