oxilean-std 0.1.2

OxiLean standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Advanced graph algorithms module.
//!
//! Provides algorithms beyond basic graph traversal: shortest paths with negative weights,
//! max-flow / min-cut, bipartite matching (Hopcroft-Karp), MST (Kruskal + Prim),
//! Tarjan's SCC, topological sort, bipartiteness check, and greedy chromatic approximation.

pub mod functions;
pub mod types;

pub use functions::*;
pub use types::*;