Esempio n. 1
0
 def activate(self, state, action):
     """ The super class ignores the state and simply passes the
         action through the module. implement _forwardImplementation()
         in subclasses.
     """
     self._state = state
     return DiscreteExplorer.activate(self, state, action)
Esempio n. 2
0
 def activate(self, state, action):
     """ The super class ignores the state and simply passes the
         action through the module. implement _forwardImplementation()
         in subclasses.
     """
     self._state = state
     return DiscreteExplorer.activate(self, state, action)
Esempio n. 3
0
 def activate(self, state, action):
     """ Save the current state for state-dependent exploration. """
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
Esempio n. 4
0
 def activate(self, state, action):
     """ Save the current state for state-dependent exploration. """
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
Esempio n. 5
0
 def activate(self, state, action):
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
Esempio n. 6
0
 def activate(self, state, action):
     self.state = state
     return DiscreteExplorer.activate(self, state, action)