Execute one step in any of the runners.
(self, exploration)
| 230 | return th |
| 231 | |
| 232 | def step(self, exploration): |
| 233 | """ |
| 234 | Execute one step in any of the runners. |
| 235 | """ |
| 236 | if len(self._runners) > 1: |
| 237 | self._populate_job_queue.put(exploration) |
| 238 | else: |
| 239 | self._runners[0].step(exploration) |
| 240 | |
| 241 | def reset_stats(self): |
| 242 | """ |