//! Analysis module for timing leak detection.
//!
//! This module implements the adaptive Bayesian analysis pipeline:
//!
//! 1. **Bayesian Inference** ([`bayes`]): Posterior probability of timing leak with adaptive thresholds
//! 2. **Effect Estimation** ([`effect`]): Maximum effect and top quantile computation
//! 3. **MDE Estimation** ([`mde`]): Minimum detectable effect at current noise level
//! 4. **Diagnostics**: Reliability checks (stationarity, outlier asymmetry)
// Re-export analysis functions from core
pub use ;
// Keep diagnostics locally (depends on main crate types)
pub use ;
// Stationarity tracking for drift detection
pub use ;