Skip to main content

des_sim/
execution.rs

1//! The `execution` module contains the core components for running a discrete event simulation.
2//!
3//! It defines the `Engine` which manages the simulation state, various `Runner` strategies
4//! for advancing the simulation, and the `SimulationResult` for capturing outcomes.
5
6mod engine;
7pub mod phase;
8mod result;
9pub mod runner;
10pub mod strategy;
11
12pub use engine::*;
13pub use result::*;