Uses of Interface
jmarkov.basic.Transitions

Packages that use Transitions
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. 
 

Uses of Transitions in jmarkov
 

Methods in jmarkov that return Transitions
 Transitions<S> SimpleMarkovProcess.activeTransitions(S i, E e)
          This method calls active, dests and rate to create the set of transitions.
abstract  Transitions<S> MarkovProcess.activeTransitions(S i, E e)
          The user MUST implement this Function in order to describe the dynamics of the model.
 Transitions<S> MarkovProcess.getRates(S i)
          This method returns a dynamic data structure with the rate from State i to all reachable states.
 

Uses of Transitions in jmarkov.basic
 

Classes in jmarkov.basic that implement Transitions
 class TransitionsSet<S extends State>
           
 

Methods in jmarkov.basic with parameters of type Transitions
 boolean TransitionsSet.add(Transitions<S> trans)
          Adds all the given Transtions to the current set.