Skip to main content

dsfb_fusion_bench/
lib.rs

1//! Deterministic synthetic benchmarking crate for DSFB fusion diagnostics.
2//!
3//! This library exposes the simulation, method, metric, timing, and output
4//! modules used by the `dsfb-fusion-bench` CLI binary.
5
6pub mod io;
7pub mod methods;
8pub mod metrics;
9pub mod sim {
10    pub mod diagnostics;
11    pub mod faults;
12    pub mod state;
13}
14pub mod timing;