oxicuda-graphalg 0.3.0

OxiCUDA: Classical graph algorithms (BFS/DFS, shortest paths, MST, max-flow, matching, SCC, centrality, community, TSP, coloring, isomorphism)
Documentation
1
2
3
4
5
6
7
//! Topological sort algorithms (Kahn, DFS-based).

pub mod dfs_topo;
pub mod kahn;

pub use dfs_topo::topo_sort_dfs;
pub use kahn::topo_sort_kahn;