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
//! The `id` module provides unique identifier types for events and sources
//! within the simulation.
//!
//! These IDs (`EventId` and `SourceId`) are essential for tracking and
//! managing individual simulation components, ensuring that each entity
//! can be uniquely referenced.

mod event_id;
mod source_id;

pub use event_id::EventId;
pub use source_id::SourceId;