Skip to main content

zer_cluster/
lib.rs

1//! Connected-components clustering and entity storage for resolved groups.
2
3mod clusterer;
4mod graph;
5mod provenance;
6mod threshold;
7mod store;
8
9pub use clusterer::ConnectedComponentsClusterer;
10pub use graph::{ClusterConfig, ClusterGraph};
11pub use provenance::ResolutionEvent;
12pub use store::ZalEntityStore;
13pub use threshold::{partition_by_band, BandedPairs};