Skip to main content

elara_time/
lib.rs

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