Uses of Class
jmarkov.MarkovProcess

Packages that use MarkovProcess
jmarkov Provides the basic elements to model continuous time Markov chains (CTMC). 
jmarkov.basic This package contains basic elements such as State, Event, Action that are used in jMarkov and jMDP. 
jmarkov.solvers Provides classes for customizing a solver used by JMarkov to solve transient and steady state probabilities in different models. 
 

Uses of MarkovProcess in jmarkov
 

Subclasses of MarkovProcess in jmarkov
 class GeomProcess<Sub extends State,E extends Event>
          The class GeomProcess represents a continuos or discrete Quasi Birth and Death process.
 class SimpleMarkovProcess<S extends State,E extends Event>
           
 

Methods in jmarkov with parameters of type MarkovProcess
 void GeomState.computeMOPs(MarkovProcess mp)
           
 void GeomRelState.computeMOPs(MarkovProcess mp)
           
 int GeomState.setMOP(MarkovProcess mp, java.lang.String mopName, double value)
           
 

Uses of MarkovProcess in jmarkov.basic
 

Methods in jmarkov.basic with parameters of type MarkovProcess
 void PropertiesState.computeMOPs(MarkovProcess mp)
          By default it computes the long run average for each property.
 void StateEvent.computeMOPs(MarkovProcess<?,?> model)
           
abstract  void State.computeMOPs(MarkovProcess<?,?> model)
          This method should be implemented in order to compute all the measures of performance MOPs.
 double State.getMOP(java.lang.String mopName, MarkovProcess<?,?> model)
          Gets the value of the MOP with this name, by calling getMOP(int)
 int State.setMOP(MarkovProcess<?,?> model, java.lang.String mopName, double value)
          Sets the value of the MOP with this name.
 

Uses of MarkovProcess in jmarkov.solvers
 

Fields in jmarkov.solvers declared as MarkovProcess
protected  MarkovProcess<?,?> Solver.mp
          The Markovprocess being solved
 

Methods in jmarkov.solvers that return MarkovProcess
 MarkovProcess Solver.getMP()
          Returns the Markov process currently being solved by this solver.
 

Constructors in jmarkov.solvers with parameters of type MarkovProcess
GeometricSolver(MarkovProcess mp)
          Builds a Geometrix Solver with the given SimpleMarkovProcess.
GeometrixSolver(MarkovProcess mp)
          Builds a Geometrix Solver with the given SimpleMarkovProcess.
JamaSolver(MarkovProcess mp)
           
JamaTransientSolver(MarkovProcess mp)
          Default constructor
MtjSolver(MarkovProcess mp)
          Default constructor.
MtjSolver(MarkovProcess mp, MtjSolver.EnumSolver solver)
          Construct a solver for the given SimpleMarkovProcess.
MtjSolver(MarkovProcess mp, MtjSolver.EnumSolver solver, boolean tryOthers)
          Construct a solver for the given SimpleMarkovProcess.
Solver(MarkovProcess mp)
          Build a solver for the given SimpleMarkovProcess
SteadyStateSolver(MarkovProcess mp)
          Builds a Steady State Solver with the given SimpleMarkovProcess.
TransientSolver(MarkovProcess mp)
          Build a solver with the asssocieted Markov Process.