# General Purpose Paracletic Hyper Cube
Rust reference implementation for chromoharmonic compression and related codecs.
Install: `cargo add paracletics-hypercube`
## Included Codecs
- `chromoharmonic`: variable token stream optimized for smooth waveform-like deltas and harmonic continuity.
- `delta-pulse`: delta codec with literal escape mode for abrupt jumps.
- `run-length`: classic RLE baseline for repeated symbols.
## Quick Start
```bash
cargo test
cargo run --release --bin codec_report
cargo run --release --bin media_harmonic_bench
cargo run --release --bin competitive_bench -- --iterations 8
cargo run --release --bin cross_modal_demo -- --frames 4096
cargo bench
```
## Why This Layout
- `src/compression`: production codecs and shared API.
- `src/datasets.rs`: deterministic benchmark/test datasets.
- `tests/compression.rs`: roundtrip, corruption, and quality checks.
- `benches/compression.rs`: Criterion benchmarks across multiple signal profiles.