Uses of Class
jmdp.basic.Solution

Packages that use Solution
jmdp   
jmdp.solvers   
 

Uses of Solution in jmdp
 

Methods in jmdp that return Solution
 Solution<S,A> DTMDP.solve(double interestRate)
          Solves the problem with the given interest rate
 Solution<S,A> CTMDP.solve(double interestRate)
          Solves the problem with the given interest rate
 

Uses of Solution in jmdp.solvers
 

Methods in jmdp.solvers that return Solution
 Solution<S,A> ValueIterationSolver.solve()
           
 Solution<S,A> StochasticShortestPathSolver.solve()
          This is the method which activated the solver, a well-specified problem must be created, then StochasticShortestPathSolver can solve the problem
abstract  Solution<S,A> Solver.solve()
          Called to solve the problem.
 Solution<S,A> RelativeValueIterationSolver.solve()
           
 Solution<S,A> PolicyIterationSolver.solve()
          Policy Iteration is a solver method this is always convergent in a finite number of iterations.
 Solution<S,A> FiniteSolver.solve()