1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Core DSFB engine — `no_std`, `no_alloc`, `no_unsafe`.
//!
//! This module contains the complete interpretive engine:
//! - Residual sign computation (residual, drift, slew)
//! - Admissibility envelope evaluation
//! - Grammar-state machine (Admissible / Boundary / Violation)
//! - Reason-code classification
//! - Heuristics bank (typed degradation motifs)
//! - Operating-regime classification
//! - Audit-trace generation
//! - Sensitivity sweep support
//! - Theorem-1 finite-exit bound computation
//!
//! All types in this module use fixed-size stack allocation.
//! No `Vec`, `String`, `Box`, `HashMap`, or any heap type is used.
// ─── Re-exports for ergonomic use ──────────────────────────────────
pub use ResidualSign;
pub use AdmissibilityEnvelope;
pub use ;
pub use ;
pub use OperatingRegime;
pub use Episode;
pub use AuditEntry;
pub use DsfbConfig;
pub use TheoremOneBound;
pub use ;