calimero-node 0.10.1-rc.3

Core Calimero infrastructure and tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Simulation runtime components.
//!
//! Provides the core infrastructure for deterministic event-driven simulation:
//! - `SimClock` - Logical time progression
//! - `EventQueue` - Priority queue with (time, seq) ordering
//! - `SimRng` - Deterministic random number generation

pub mod clock;
pub mod queue;
pub mod rng;

pub use clock::{SimClock, SimDuration, SimTime};
pub use queue::{EventQueue, EventSeq};
pub use rng::SimRng;