rust-igraph 0.0.1-alpha.2

Pure-Rust port of the igraph network analysis library (alpha — Phase 1 complete).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Algorithm implementations for rust-igraph.
//!
//! Phase 0 walking-skeleton scope: only `traversal::bfs` and
//! `io::read_edgelist`. The full algorithm catalog is filled in by AWUs
//! across Phases 1-10 (see `docs/plans/MASTER_PLAN.md`).

pub mod community;
pub mod connectivity;
pub mod io;
pub mod operators;
pub mod paths;
pub mod properties;
pub mod traversal;