waremax_core/lib.rs
1//! Waremax Core - Core types and DES kernel for warehouse robot simulation
2//!
3//! This crate provides the fundamental types and discrete-event simulation kernel
4//! used throughout the Waremax simulation system.
5
6pub mod error;
7pub mod event;
8pub mod id;
9pub mod kernel;
10pub mod rng;
11pub mod time;
12
13pub use error::SimError;
14pub use event::{ScheduledEvent, SimEvent};
15pub use id::*;
16pub use kernel::Kernel;
17pub use rng::SimRng;
18pub use time::SimTime;