aika 0.2.1

Multi-agent coordination framework in Rust with single and multi-threaded execution engines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Multi-threaded simulation execution with support for optimistic and conservative synchronization.
//! Currently implements hybrid synchronization based on Clustered Time Warp architecture for
//! parallel discrete event simulation across multiple threads.

pub mod consensus;
pub mod engines;
pub(crate) mod logging;

#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum RunMode {
    Fast,
    Debug,
}