elara-time 0.2.0

ELARA Protocol - Time convergence engine with dual clock system, reality windows, and temporal prediction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(mixed_script_confusables, non_snake_case)]
//! ELARA Time Engine - Dual clock system and temporal control
//!
//! This crate implements the Time Engine:
//! - τp (Perceptual Time): monotonic, smooth, local-driven
//! - τs (State Time): elastic, drift-correctable, convergence-oriented
//! - Reality Window management
//! - Network model and horizon adaptation
//! - Prediction and correction loops

pub mod clock;
pub mod engine;
pub mod network;

pub use clock::*;
pub use engine::*;
pub use network::*;