rust-igraph 0.0.1-alpha.1

Pure-Rust port of the igraph network analysis library (alpha — Phase 1).
Documentation
1
2
3
4
5
6
7
8
//! Community-detection algorithms (ALGO-CO-*). Phase 1: `modularity`
//! (Newman-Girvan modularity of a partition).

// `pub(crate)` so the inner module name doesn't double-list with the
// function re-export in rustdoc.
pub(crate) mod modularity;

pub use modularity::{modularity, modularity_directed, modularity_weighted};