des_sim/execution/runner/instance.rs
1//! The `instance` module provides concrete implementations of the `Runner` trait.
2//!
3//! These include `StandardRunner` for efficient, time-skipping simulations,
4//! `RealtimeRunner` for simulations synchronized with real-world time,
5//! and `ParallelBatchRunner` for executing multiple simulations concurrently.
6
7mod parallel;
8mod realtime;
9mod standard;
10
11pub use parallel::*;
12pub use realtime::*;
13pub use standard::*;