datacortex_core/state/mod.rs
1//! State primitives — StateTable, StateMap, ContextMap for bit-level state tracking.
2//!
3//! Phase 2: 256-state bit history machine + adaptive state→probability mapping.
4//! Phase 3: ContextMap — lossy hash table for higher-order context models.
5
6pub mod context_map;
7pub mod state_map;
8pub mod state_table;
9
10pub use context_map::{AssociativeContextMap, ChecksumContextMap, ContextMap};
11pub use state_map::StateMap;
12pub use state_table::StateTable;