datacortex-core 0.6.0

JSON/NDJSON-optimized lossless compression. Schema inference, columnar reorg, typed encoding. Beats zstd-19 by up to 113%
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! State primitives — StateTable, StateMap, ContextMap for bit-level state tracking.
//!
//! Phase 2: 256-state bit history machine + adaptive state→probability mapping.
//! Phase 3: ContextMap — lossy hash table for higher-order context models.

pub mod context_map;
pub mod state_map;
pub mod state_table;

pub use context_map::{AssociativeContextMap, ChecksumContextMap, ContextMap};
pub use state_map::StateMap;
pub use state_table::StateTable;