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§
- Parallel
Runner - A runner that enables parallel event execution.
- Realtime
Runner - A runner that executes the simulation in synchronization with real-world time.
- Standard
Runner - A standard runner that processes events sequentially in the order they were fired.
Traits§
- Parallel
Model - An extension trait for models supporting parallel execution.