rust-igraph 0.0.1-alpha.0

Pure-Rust port of the igraph network analysis library (alpha — Phase 0).
Documentation
1
2
3
4
5
6
7
8
//! 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 io;
pub mod traversal;