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 `instance` module provides concrete implementations of the `Runner` trait.
//!
//! These include `StandardRunner` for efficient, time-skipping simulations,
//! `RealtimeRunner` for simulations synchronized with real-world time,
//! and `ParallelBatchRunner` for executing multiple simulations concurrently.

mod parallel;
mod realtime;
mod standard;

pub use parallel::*;
pub use realtime::*;
pub use standard::*;