Skip to main content

do_memory_mcp/patterns/statistical/
mod.rs

1//! # Statistical Analysis Engine
2//!
3//! Core statistical engine providing Bayesian changepoint detection,
4//! correlation analysis with significance testing, and time-series trend detection.
5//!
6//! This module is organized as follows:
7//! - [`analysis`](analysis/index.html) - Core implementation (BOCPD, StatisticalEngine, types)
8//! - [`tests`](tests/index.html) - Test suite
9
10pub mod analysis;
11#[cfg(test)]
12pub mod bocpd_tests;
13#[allow(unused)]
14pub mod tests;
15
16// Re-export public API from analysis module
17pub use analysis::{
18    AnalysisMetadata, BOCPDConfig, BOCPDResult, BOCPDState, ChangeType, ChangepointConfig,
19    ChangepointDetector, ChangepointResult, CorrelationAnalyzer, CorrelationResult, SimpleBOCPD,
20    StatisticalConfig, StatisticalEngine, StatisticalResults, TrendDirection, TrendResult,
21};