Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 567864c

Browse files
committed
Fixed comment: result pairs were swapped.
1 parent 7967097 commit 567864c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mdp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def R(self, state):
2727

2828
def T(self, state, action):
2929
"""Transition model. From a state and an action, return a list
30-
of (result-state, probability) pairs."""
30+
of (probability, result-state) pairs."""
3131
abstract
3232

3333
def actions(self, state):

0 commit comments

Comments
 (0)