//! f64 SIMD math dispatch layering:
//! - family-local modules own the public internal routing points for each math family.
//! - current decisions are intentionally mixed:
//! portable SIMD for the revived core log/exp family, inverse trig, and binary misc,
//! scalar-reference for trig and the losing `cosh_u35` / `atanh_u35` defaults,
//! and hybrid paths where a stricter scalar sub-op or scalar-lane patch still underpins the fast path.
//! - follow-up optimization work can still replace one family module at a time.
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;