Uses of Class
jmdp.CTMDP

Packages that use CTMDP
jmdp   
jmdp.solvers   
 

Uses of CTMDP in jmdp
 

Subclasses of CTMDP in jmdp
 class CTMDPEv<S extends State,A extends Action,E extends Event>
          This class represents an Infinite horizon, continuous time Markov Decision Process with events.
 class CTMDPEvA<S extends State,A extends Action,E extends Event>
          This class represents an Infinite horizon, continuous time Markov Decision Process with events where actions depend on events.
 

Uses of CTMDP in jmdp.solvers
 

Constructors in jmdp.solvers with parameters of type CTMDP
AbstractInfiniteSolver(CTMDP<S,A> problem)
          Creates a solver for an infinite horizon continuous time problem
ProbabilitySolver(CTMDP<S,A> problem)
          Initializes a new solver for continuous chains and solves the probabilities for the optimal policy.
ProbabilitySolver(CTMDP<S,A> problem, DecisionRule<S,A> dr)
          Initializes a new solver for continuous chains and solves the probabilities for a particular decision rule.
RelativeValueIterationSolver(CTMDP<S,A> problem)
          Creates a new solver for a continuous time, infinite horizon problem.
RelativeValueIterationSolver(CTMDP<S,A> problem, double factor)
          Creates a new solver for a continuous time, infinite horizon problem to be solved with the modified relative value iteration method.
ValueIterationSolver(CTMDP<S,A> problem, double discountFactor)
          This constructor method exclusively receives a problem of the type CTMDP because this solver is only designed to work on infinite horizon problems.