des-sim 0.1.0

Classical Event-Driven Simple Simulator Crate for Discrete Event System.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The `execution` module contains the core components for running a discrete event simulation.
//!
//! It defines the `Engine` which manages the simulation state, various `Runner` strategies
//! for advancing the simulation, and the `SimulationResult` for capturing outcomes.

mod engine;
pub mod phase;
mod result;
pub mod runner;
pub mod strategy;

pub use engine::*;
pub use result::*;