You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, simulation.run(..) runs until the events created by it, and only it, have all been responded to, success or failed.
In some circumstances, we want the simulation to run until a signal is received. For example, it is possible that an event may have created child events and the parent event completes before child events do. In such a case, the simulation needs to run for longer. In other cases, we want to terminate the simulation before all events have received a response.
A signal might be:
A time
A completion of all child events
A particular stage has reached a certain number of calls to workOn
The text was updated successfully, but these errors were encountered:
Currently,
simulation.run(..)
runs until the events created by it, and only it, have all been responded to, success or failed.In some circumstances, we want the simulation to run until a signal is received. For example, it is possible that an event may have created child events and the parent event completes before child events do. In such a case, the simulation needs to run for longer. In other cases, we want to terminate the simulation before all events have received a response.
A signal might be:
workOn
The text was updated successfully, but these errors were encountered: