//! Streaming decision trees with Hoeffding-bound split decisions.
//!
//! Core implementation lives in `irithyll-core` and is re-exported here.
pub use *;
// Re-export sub-modules for path compatibility
pub use builder;
pub use hoeffding;
pub use hoeffding_classifier;
pub use leaf_model;
pub use node;
pub use predict;
pub use split;