Expand description
Statistical analysis layers for timing leak detection.
This module implements the statistical analysis framework (spec §3-5):
- Bayesian inference (
bayes): Posterior probability of timing leak - Effect estimation (
effect): Max effect and top quantile computation - MDE estimation (
mde): Minimum detectable effect for power analysis
Re-exports§
pub use bayes::compute_bayes_gibbs;pub use bayes::compute_max_effect_ci;pub use bayes::BayesResult;pub use bayes::MaxEffectCI;pub use effect::compute_effect_estimate;pub use effect::compute_effect_estimate_analytical;pub use effect::compute_top_quantiles;pub use effect::regularize_covariance;pub use gibbs::run_gibbs_inference;pub use gibbs::GibbsResult;pub use gibbs::NU;pub use gibbs::N_BURN;pub use gibbs::N_GIBBS;pub use gibbs::N_KEEP;pub use mde::analytical_mde;pub use mde::estimate_mde;pub use mde::MdeEstimate;