//! Work Falsification: Popperian Falsification Executor
//!
//! Runs all falsification tests and BLOCKS completion if ANY fail.
//! Based on Karl Popper's demarcation criterion: claims must be falsifiable.
//!
//! **O(1) CRITICAL:** On the hot path every check reads cached metrics
//! (<100ms total). The one exception is the supply-chain claim: when its cache
//! is stale or absent it costs one bounded `cargo deny check` (see
//! [`deny_refresh`]), because nothing else has ever written that cache and the
//! claim was otherwise unsatisfiable (GH #629).
//!
//! Based on: docs/specifications/improve-pmat-work.md
// Re-export public API
pub use capture_baseline;
pub use ;
pub use run_falsification_tests;
pub use ;