//! The MadaBoost algorithm proposed
//! by Carlos Domingo and Osamu Watanabe.
//! This algorithm is based on the paper:
//! [
//! MadaBoost: A Modification of AdaBoost
//! ](https://www.learningtheory.org/colt2000/papers/DomingoWatanabe.pdf)
//!
pub mod madaboost_algorithm;
pub use madaboost_algorithm::MadaBoost;