Uses of Interface
jmarkov.basic.Actions

Packages that use Actions
jmarkov.basic This package contains basic elements such as State, Event, Action that are used in jMarkov and jMDP. 
jmarkov.jmdp jMDP is used to solve Markov Decision Processes. 
 

Uses of Actions in jmarkov.basic
 

Classes in jmarkov.basic that implement Actions
 class ActionsSet<A extends Action>
          This class represents a set of objects Action.
 

Constructors in jmarkov.basic with parameters of type Actions
ActionsSet(Actions<A> ac)
          Creates a set of Actions from a given set of Actions.
 

Uses of Actions in jmarkov.jmdp
 

Methods in jmarkov.jmdp that return Actions
abstract  Actions<A> DTMDPEvA.feasibleAct(S i)
          Returns the set of actions available at this state.
abstract  Actions<A> CTMDPEvA.feasibleAct(S i)
          Returns the set of actions available at this state.
abstract  Actions<A> InfiniteMDP.feasibleActions(S i)
          Returns the set of actions available at this state.
 Actions<A> CT2DTConverter.feasibleActions(S i)
           
abstract  Actions<A> FiniteMDP.feasibleActions(S i, int t)
          Returns the actions available at this state i and at this stage t .
 Actions<A> DTMDPEvA.feasibleActions(StateEvent<S,E> i)
           
 Actions<A> CTMDPEvA.feasibleActions(StateEvent<S,E> s)