Skip to main content

datacortex_core/entropy/
mod.rs

1//! Entropy coding — binary arithmetic coder (12-bit precision, carry-free).
2//!
3//! Phase 2: PAQ8-style binary arithmetic encoder/decoder.
4
5pub mod arithmetic;
6
7pub use arithmetic::{ArithmeticDecoder, ArithmeticEncoder};