(self, rewards, actions)
| 19 | self.j = start[1] |
| 20 | |
| 21 | def set(self, rewards, actions): |
| 22 | # rewards should be a dict of: (i, j): r (row, col): reward |
| 23 | # actions should be a dict of: (i, j): A (row, col): list of possible actions |
| 24 | self.rewards = rewards |
| 25 | self.actions = actions |
| 26 | |
| 27 | def set_state(self, s): |
| 28 | self.i = s[0] |
no outgoing calls
no test coverage detected