Пример #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)
Пример #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)
Пример #3
0
 def activate(self, state, action):
     """ Save the current state for state-dependent exploration. """
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
Пример #4
0
 def activate(self, state, action):
     """ Save the current state for state-dependent exploration. """
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
Пример #5
0
 def activate(self, state, action):
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
Пример #6
0
 def activate(self, state, action):
     self.state = state
     return DiscreteExplorer.activate(self, state, action)