rust_igraph/algorithms/mod.rs
1//! Algorithm implementations for rust-igraph.
2//!
3//! Phase 0 walking-skeleton scope: only `traversal::bfs` and
4//! `io::read_edgelist`. The full algorithm catalog is filled in by AWUs
5//! across Phases 1-10 (see `docs/plans/MASTER_PLAN.md`).
6
7pub mod community;
8pub mod connectivity;
9pub mod io;
10pub mod operators;
11pub mod paths;
12pub mod properties;
13pub mod traversal;