//! Overlapping community detection algorithms.
//!
//! This module implements algorithms that detect communities where nodes may
//! belong to multiple communities simultaneously:
//!
//! - **BigClam**: Community Affiliation Graph Model via NMF of affiliation matrix
//! - **DEMON**: Local overlapping community detection via ego-network label propagation
//! - **Link Communities**: Edge partitioning to infer node overlaps
//! - **Evaluation**: Overlapping NMI, Omega index, F1, and coverage metrics
pub use ;
pub use ;
pub use ;
pub use ;