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

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

Uses of Policy in edu.iastate.jrelm.rl
 

Classes in edu.iastate.jrelm.rl with type parameters of type Policy
 interface ReinforcementLearner<PA extends RLParameters,I,A extends Action,F extends Feedback,PO extends Policy>
          For classes that implement reinforcement learning algorithms.
 

Subinterfaces of Policy in edu.iastate.jrelm.rl
 interface StatelessPolicy<I,A extends Action>
          Interface for building a stateless reinforcement learning policy.
 

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

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

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