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
14
//! `aika::mt::engines` contains all the core multi-threaded parallel simulation engines and their infrastructure. Currently,
//!  there is only one engine, `hlocal`, however there are plans for both `hdist` and `clocal`.
pub mod hlocal;

/// Time information for hybrid model simulations.
#[derive(Copy, Clone, Debug)]
pub struct HTime {
    /// Current GVT value.
    pub gvt: u64,
    /// Checkpoint frequency in block count.
    pub cp_hz: u64,
    /// Latest terminal time of the simulation.
    pub terminal: u64,
}