1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! This library provides Change Point Detection (CPD) tools such as
//!  * Online Bayesian CPD as `Bocpd`

mod online_bayesian;
pub use online_bayesian::*;

mod hazard;
pub use hazard::*;

pub mod generators;

pub mod utils;