Receives an action of ActType. Simulator should update its internal state, and return None. The updated state can be retrieved with ``simulator.get_state()``.
(self, action: ActType)
| 55 | pass |
| 56 | |
| 57 | def step(self, action: ActType) -> None: |
| 58 | """Receives an action of ActType. |
| 59 | |
| 60 | Simulator should update its internal state, and return None. |
| 61 | The updated state can be retrieved with ``simulator.get_state()``. |
| 62 | """ |
| 63 | raise NotImplementedError() |
| 64 | |
| 65 | def get_state(self) -> StateType: |
| 66 | raise NotImplementedError() |
no outgoing calls
no test coverage detected