//! Deterministic replay.
//!
//! The grammar produces episodes that are bytewise identical across runs of
//! the same `(stream, grammar)` pair. We hash the episode list with SHA-256
//! and check the digest against a stored value; the test
//! `tests/deterministic_replay.rs` enforces this property end-to-end.
use Episode;
use ;