Shortcuts

Source code for openrl.envs.mpe.scenario

# defines scenario upon which the world is built
[docs]class BaseScenario(object): # create elements of the world
[docs] def make_world(self): raise NotImplementedError()
# create initial conditions of the world
[docs] def reset_world(self, world): raise NotImplementedError()
[docs] def info(self, agent, world): return {}