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
14
15
16
//! The `modeling` module provides the fundamental building blocks for defining discrete event simulation models.
//!
//! It includes traits and structures for:
//! - [`agent`]: Representing autonomous entities within the simulation.
//! - [`event`]: Defining events that drive the simulation.
//! - [`hook`]: Observing and reacting to simulation events and state changes.
//! - [`model`]: Implementing the core simulation logic.
//! - [`sampler`]: Generating random data for stochastic simulations.
//! - [`source`]: Generating events periodically or based on specific conditions.

pub mod agent;
pub mod event;
pub mod hook;
pub mod model;
pub mod sampler;
pub mod source;