//! Provides the `Cluster` struct, which is used to store the cluster data.
//!
//! It also provides the `Tree` struct, which is used to store a tree of clusters
//! and is meant to be public.
//!
//! It also provides the `PartitionCriteria` trait, and implementations for
//! `PartitionCriteria` for `MaxDepth` and `MinCardinality` which are used to
//! determine when to stop partitioning the tree.
pub use ;
pub use ;
pub use Tree;
/// An array of 6 floats representing the parent to child ratios of cardinality, lfd, and radius,
/// as well as the exponential moving average of each value
pub type Ratios = ;