Skip to main content

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 io;
8pub mod traversal;