des_sim/primitive/time.rs
1//! The `time` module provides fundamental types and utilities for managing
2//! time within the discrete event simulation.
3//!
4//! This includes `SimTime` for representing absolute simulation time, `Duration`
5//! for time intervals, `MicroStep` for ordering events within the same `SimTime`,
6//! and `TickStatus`/`MicroStepStatus` for tracking the current state of time
7//! progression.
8
9mod micro_step;
10mod sim_time;
11
12pub use micro_step::*;
13pub use sim_time::*;