SSJ  3.3.1
Stochastic Simulation in Java
Classes
Package umontreal.ssj.simevents.eventlist

This package provides different kinds of event list implementations. More...

Classes

class  BinaryTree
 An implementation of EventList using a binary search tree. More...
 
class  DoublyLinked
 An implementation of EventList using a doubly linked linear list. More...
 
interface  EventList
 An interface for implementations of event lists. More...
 
class  Henriksen
 An implementation of EventList using the doubly-linked indexed list of Henriksen [108]  (see also [62]  (p. More...
 
class  RedblackTree
 An implementation of EventList using a red black tree, which is similar to a binary search tree except that every node is colored red or black. More...
 
class  SplayTree
 An implementation of EventList using a splay tree [218] . More...
 

Detailed Description

This package provides different kinds of event list implementations.

One can change the default umontreal.ssj.simevents.eventlist.SplayTree event list implemntation via the method umontreal.ssj.simevents.Sim.init(umontreal.ssj.simevents.eventlist.EventList).

Remarks
Pierre: Should add the appropriate references for the different event list implementations.