#![cfg(any(test, feature = "cpu-parity"))]
//! Reference-only reference oracles for Weir parity and conformance.
//!
//! Production dataflow execution should build a `weir::*` Program and dispatch
//! through a concrete Vyre GPU backend. These wrappers are the only supported
//! CPU reference boundary for tests, corpus gates, fuzzers, and release
//! evidence. Keeping every oracle call behind this module makes CPU execution
//! visible, auditable, and impossible to confuse with a production path.
pub mod bitset;
pub mod graph;
pub mod summary;