aika/mt/mod.rs
1//! Multi-threaded simulation execution with support for optimistic and conservative synchronization.
2//! Currently implements hybrid synchronization based on Clustered Time Warp architecture for
3//! parallel discrete event simulation across multiple threads.
4
5pub mod consensus;
6pub mod engines;
7pub(crate) mod logging;
8
9#[derive(Debug, Copy, Clone, PartialEq, Eq)]
10pub enum RunMode {
11 Fast,
12 Debug,
13}