Skip to main content

rust_igraph/algorithms/traversal/
mod.rs

1//! Graph traversal. Phase 0 only ships BFS.
2
3pub mod bfs;
4
5pub use bfs::bfs;