//! MDL description-length bounds for structural compression ratios.
//!
//! Formalizes model cost plus data cost in bits for comparing structural
//! descriptions against original token payloads.
use StructuralDescription;
/// Compute description length in bits (MDL formalization).
///
/// `DL(desc) = model_cost + data_cost`, where model cost captures structural
/// overhead and data cost approximates token encoding against an LLM vocabulary.
pub