//! Anomaly detection for time series
//!
//! This module provides both legacy anomaly detection and advanced statistical methods:
//! - `legacy`: Original anomaly detection methods (SPC, IsolationForest, ZScore, etc.)
//! - `statistical`: Advanced statistical methods (STL, GESD, Shewhart, EWMA, CUSUM, IsolationForestTS)
// Re-export legacy types for backward compatibility
pub use ;
// Re-export new statistical anomaly detection types
pub use ;