Package | Description |
---|---|
examples.jmarkov | |
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
|
Modifier and Type | Method and Description |
---|---|
Transitions<examples.jmarkov.BBPhBufSt> |
BBPhBuf.activeTransitions(examples.jmarkov.BBPhBufSt x,
examples.jmarkov.BBPhBufEv e) |
Transitions<examples.jmarkov.BBPhBufSt> |
BBPhBuf.revive(Transition<examples.jmarkov.BBPhBufSt> tr,
int i)
If worker i can start working this returns all posiible new
states.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
TransitionsSet<S extends State> |
Modifier and Type | Method and Description |
---|---|
boolean |
TransitionsSet.add(Transitions<S> trans)
Adds all the given Transtions to the current set.
|