Uses of Interface
edu.iastate.jrelm.rl.StatelessPolicy

Packages that use StatelessPolicy
edu.iastate.jrelm.rl   
edu.iastate.jrelm.rl.rotherev   
 

Uses of StatelessPolicy in edu.iastate.jrelm.rl
 

Classes in edu.iastate.jrelm.rl with type parameters of type StatelessPolicy
 class AbstractStatlessLearner<PA extends RLParameters,I,A extends Action<I>,F extends Feedback,PO extends StatelessPolicy<I,A>>
          Base abstract class for ReinforcementLearner classes that implement algorithms that do not make use of external environmental states.
 

Classes in edu.iastate.jrelm.rl that implement StatelessPolicy
 class AbstractStatelessPolicy<I,A extends Action>
          An abstract implementation of the StatelessPolicy interface.
 class SimpleStatelessPolicy<I,A extends Action>
          A simple implementation of the StatelessPolicy interface.
 

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

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

Uses of StatelessPolicy in edu.iastate.jrelm.rl.rotherev
 

Classes in edu.iastate.jrelm.rl.rotherev that implement StatelessPolicy
 class REPolicy<I,A extends Action>