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 `time` module provides fundamental types and utilities for managing
//! time within the discrete event simulation.
//!
//! This includes `SimTime` for representing absolute simulation time, `Duration`
//! for time intervals, `MicroStep` for ordering events within the same `SimTime`,
//! and `TickStatus`/`MicroStepStatus` for tracking the current state of time
//! progression.

mod micro_step;
mod sim_time;

pub use micro_step::*;
pub use sim_time::*;