//! `cycle_bench` library: per-program executor/prover cycle measurement helpers //! shared between the `cycle_bench` binary and the `verify` criterion bench. #![expect( clippy::arithmetic_side_effects, clippy::as_conversions, clippy::cast_precision_loss, clippy::float_arithmetic, clippy::print_literal, clippy::print_stdout, reason = "Bench library: stats arithmetic and table printing are bench-style" )] #![cfg_attr( feature = "ppe", expect( clippy::arbitrary_source_item_ordering, clippy::print_stderr, reason = "PPE module: re-export ordering and eprintln progress trip strict lints" ) )] pub mod ppe; pub mod stats;