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
//! Graph traversal. Phase 0 ships BFS; ALGO-TR-002 adds DFS;
//! ALGO-TR-001 adds the multi-output BFS variant `bfs_tree`.

// `pub(crate)` so the inner module names don't double-list with the
// function re-exports in rustdoc.
pub(crate) mod bfs;
pub(crate) mod dfs;

pub use bfs::{BfsTree, bfs, bfs_tree};
pub use dfs::dfs;