graphalgs 0.2.0

Graph algorithms based on the Rust 'petgraph' library.
Documentation
1
2
3
4
5
6
7
8
9
//! Minimum spanning tree (MST) algorithms.
//!
//! The `kruskal` function is a reimported `min_spanning_tree` function from the 'petgraph' crate.

pub use petgraph::algo::min_spanning_tree as kruskal;
mod prim;
pub use prim::prim;
mod boruvka;
pub use boruvka::boruvka;