Stops the runtime.
(self)
| 173 | self._state = State.STOP if finished else State.RUNNING |
| 174 | |
| 175 | def stop(self): |
| 176 | """Stops the runtime.""" |
| 177 | self._state = State.STOPPED |
| 178 | |
| 179 | def restart(self): |
| 180 | """Restarts the episode, resetting environment, model, and data.""" |
no outgoing calls