Uses of Class
jmdp.MDP

Packages that use MDP
jmdp   
jmdp.solvers   
 

Uses of MDP in jmdp
 

Subclasses of MDP in jmdp
 class CTMDP<S extends State,A extends Action>
          This class represents a continuous time MDP.
 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.
 class DTMDP<S extends State,A extends Action>
          This class represents a discrete time INFINITE horizon MDP Problems.
 class DTMDPEv<S extends State,A extends Action,E extends Event>
          This class represents an infinite horizon, discrete time, Markov Decision Process with events.
 class DTMDPEvA<S extends State,A extends Action,E extends Event>
          This class represents an infinite horizon, discrete time, Markov Decision Process with events, where actions depend on events.
 class FiniteDP<S extends State,A extends Action>
          This class should ONLY be used in FINITE horizondeterministic problems.
 class FiniteMDP<S extends State,A extends Action>
          This class should ONLY be used in FINITE horizon problems.
 class FiniteMDPEv<S extends State,A extends Action,E extends Event>
          This class represents a finite horizon discrete time MDP with events.
 class InfiniteMDP<S extends State,A extends Action>
          This class is a structural class and is not intended to be extended.
 class StochasticShortestPath<S extends StateC,A extends Action>
          This class represents an infinite horizon shortest path problem.
 

Uses of MDP in jmdp.solvers
 

Subclasses of MDP in jmdp.solvers
 class CT2DTConverter<S extends State,A extends Action>
          This class formulates a DTMDP equivalent to a CTMDP.
 

Fields in jmdp.solvers declared as MDP
protected  MDP<S,A> Solver.problem
           
 

Methods in jmdp.solvers that return MDP
 MDP<S,A> Solver.getProblem()
          Returns the problem associated wit this solver.
 

Constructors in jmdp.solvers with parameters of type MDP
Solver(MDP<S,A> problem)
          Default constructor.