|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
stopSimulation(self)
Application function to stop simulation run |
source code
|
|
|
_post(self,
what,
at,
prior=False)
Post an event notice for process what for time at |
source code
|
|
|
_unpost(self,
whom)
Mark event notice for whom as cancelled if whom is a suspended
process |
source code
|
|
|
allEventNotices(self)
Returns string with eventlist as; t1: processname, processname2 t2:
processname4, processname5, . |
source code
|
|
|
allEventTimes(self)
Returns list of all times for which events are scheduled. |
source code
|
|
|
activate(self,
obj,
process,
at=' undefined ' ,
delay=' undefined ' ,
prior=False)
Application function to activate passive process. |
source code
|
|
|
reactivate(self,
obj,
at=' undefined ' ,
delay=' undefined ' ,
prior=False)
Application function to reactivate a process which is active,
suspended or passive. |
source code
|
|
|
startCollection(self,
when=0.0,
monitors=None,
tallies=None)
Starts data collection of all designated Monitor and Tally objects
(default = all) at time 'when'. |
source code
|
|
|
|
|
_terminate(self,
process)
Marks a process as terminated. |
source code
|
|
|
|
|
peek(self)
Returns the time of the next event or infinity, if no more events are
scheduled. |
source code
|
|
|
step(self)
Executes the next uncancelled event in the eventqueue. |
source code
|
|
|
simulate(self,
until=0)
Start the simulation and run its loop until the timeout ``until`` is
reached, stopSimulation is called, or no more events are scheduled. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|