ipfrs_tensorlogic/hypothesis_test_engine/mod.rs
1//! Statistical Hypothesis Testing Engine for Logical Assertions
2//!
3//! Provides production-quality statistical hypothesis testing with:
4//! - One-sample and two-sample z-tests and t-tests
5//! - Chi-square goodness-of-fit and independence tests
6//! - Proportion tests (one-sample and two-sample)
7//! - Confidence interval computation
8//! - Effect size (Cohen's d, Cramér's V)
9//! - Monte Carlo power simulation via xorshift64 PRNG
10
11pub mod engineconfig_traits;
12pub mod functions;
13pub mod hypothesistestengine_traits;
14pub mod testerror_traits;
15pub mod types;
16
17// Re-export all types
18pub use functions::*;
19pub use types::*;
20
21#[cfg(test)]
22mod tests;