Calls the `run` method of the wrapped engine.
(self)
| 294 | self.engine.add_event_handler(Events.ITERATION_COMPLETED, self._update_status) |
| 295 | |
| 296 | def run(self): |
| 297 | """Calls the `run` method of the wrapped engine.""" |
| 298 | self.engine.run() |
| 299 | |
| 300 | def stop(self): |
| 301 | """Stop the engine and join the thread.""" |