Skip to main content

Module instance

Module instance 

Source
Expand description

The instance module provides concrete implementations of the Runner trait.

These include StandardRunner for efficient, time-skipping simulations, RealtimeRunner for simulations synchronized with real-world time, and ParallelBatchRunner for executing multiple simulations concurrently.

Structs§

ParallelRunner
A runner that enables parallel event execution.
RealtimeRunner
A runner that executes the simulation in synchronization with real-world time.
StandardRunner
A standard runner that processes events sequentially in the order they were fired.

Traits§

ParallelModel
An extension trait for models supporting parallel execution.