| 161 | import gym |
| 162 | |
| 163 | class NaiveSimulator(SimulatorProcess): |
| 164 | def _build_player(self): |
| 165 | return gym.make('Breakout-v0') |
| 166 | |
| 167 | class NaiveActioner(SimulatorMaster): |
| 168 | def _get_action(self, state): |
no outgoing calls
no test coverage detected
searching dependent graphs…