Uses of Class
jmarkov.Event

Packages that use Event
jmarkov Provides the basic elements to model continuous time Markov chains (CTMC). 
 

Uses of Event in jmarkov
 

Classes in jmarkov with type parameters of type Event
 class EventsSet<E extends Event>
          This class represent a set of Events.
 class GeomProcess<Sub extends State,Evt extends Event>
          The class GeomProcess represents a continuos or discrete Quasi Birth and Death process.
 class MarkovProcess<Stte extends State,Evt extends Event>
          The abstract class MarkovProcess represents a Continuous or Discrete Time Markov Chain.
 

Methods in jmarkov that return Event
 Evt[] MarkovProcess.getEvents()
          Returns all The events defined in the model.
 E[] EventsSet.toEventArray()
          Returns an array with the Events in the set.
 

Methods in jmarkov that return types with arguments of type Event
static EventsSet<Event> EventsSet.createEventSet(int numE)
          Creates a set with numE Events.
 

Methods in jmarkov with parameters of type Event
 boolean SimpleMarkovProcess.active(Stte i, Event e)
          This method implements the corresponding method in the super class.
 boolean EventsSet.contains(Event e)
          Returns true if the set contains this Event.
 Stte[] SimpleMarkovProcess.dests(Stte i, Event e)
          This method implements the corresponding method in the super class.
 double SimpleMarkovProcess.rate(Stte i, Stte j, Event e)
          This method implements the corresponding method in the super class.