Esempio n. 1
0
 def _state_dim(self):
     """
     Private method to retrieve shape of the state declared by the
     environemnt.
     """
     raise exceptions.EnvironmentMethodNotImplemented(
         "_state_dim is not implemented for this environment!")
Esempio n. 2
0
 def _step(self, state, action, *args):
     """
     Private method that simulates a time step for the environment
     """
     raise exceptions.EnvironmentMethodNotImplemented(
         "_step() is not implemented for this environment!")
Esempio n. 3
0
 def _reset_after_move(self):
     """
     Private method to reset the environment's state
     """
     raise exceptions.EnvironmentMethodNotImplemented(
         "_reset_after_move() is not implemented for this environment!")
Esempio n. 4
0
 def _actions(self):
     """
     Private method that implements actions available for the environment
     """
     raise exceptions.EnvironmentMethodNotImplemented(
         "_actions is not implemented for this environment!")