//! aether_verified //! //! Provenance: Lean 4 -> C -> Rust #![no_std] #[cfg(test)] extern crate std; pub mod aether_pruning; pub mod aether_governor; pub mod aether_chebyshev; pub mod aether_betti; pub use aether_pruning::*; pub use aether_governor::*; pub use aether_chebyshev::*; pub use aether_betti::*;