Uses of Class
edu.iastate.jrelm.core.SimpleAction

Packages that use SimpleAction
edu.iastate.jrelm.core   
edu.iastate.jrelm.demo.bandit   
edu.iastate.jrelm.rl   
 

Uses of SimpleAction in edu.iastate.jrelm.core
 

Methods in edu.iastate.jrelm.core that return SimpleAction
 SimpleAction<O> SimpleActionDomain.getAction(int actionIndex)
          Convenience method to allow actions to be retrieved with an int id.
 SimpleAction<O> SimpleActionDomain.getAction(java.lang.Integer id)
           
 

Methods in edu.iastate.jrelm.core with parameters of type SimpleAction
 boolean SimpleActionDomain.containsAction(SimpleAction<O> actionToCheck)
           
 

Uses of SimpleAction in edu.iastate.jrelm.demo.bandit
 

Subclasses of SimpleAction in edu.iastate.jrelm.demo.bandit
 class BanditAction
           
 

Uses of SimpleAction in edu.iastate.jrelm.rl
 

Methods in edu.iastate.jrelm.rl that return SimpleAction
 SimpleAction<O> SimpleStatelessLearner.chooseAction()
          Elicits a choice of action.
 

Methods in edu.iastate.jrelm.rl that return types with arguments of type SimpleAction
 StatelessPolicy<java.lang.Integer,SimpleAction<O>> SimpleStatelessLearner.getPolicy()
           
 

Method parameters in edu.iastate.jrelm.rl with type arguments of type SimpleAction
 void SimpleStatelessLearner.setPolicy(StatelessPolicy<java.lang.Integer,SimpleAction<O>> newPolicy)
          Set the policy for this SimpleStatelessLearner.
 

Constructor parameters in edu.iastate.jrelm.rl with type arguments of type SimpleAction
SimpleStatelessLearner(REParameters params, REPolicy<java.lang.Integer,SimpleAction<O>> aPolicy)
          Build a SimpleStatelessLearner that uses the Roth-Erev algorithm with the given REPolicy.
SimpleStatelessLearner(VREParameters params, REPolicy<java.lang.Integer,SimpleAction<O>> aPolicy)
          Build a SimpleStatelessLearner that uses a modified version of the Roth-Erev algorithm with the given REPolicy.