leiden-rs 0.8.0

High-performance Leiden community detection algorithm for graphs in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Graph library adapters.
//!
//! Each supported graph library has its own submodule, gated behind a feature flag.
//! Each adapter provides a single entry point function that produces a [`crate::graph::GraphData`].

#[cfg(feature = "gryf")]
pub mod gryf;

#[cfg(feature = "petgraph")]
pub mod petgraph;