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
8
9
//! Graph coloring.

pub mod dsatur;
pub mod greedy_coloring;
pub mod welsh_powell;

pub use dsatur::dsatur_coloring;
pub use greedy_coloring::greedy_coloring;
pub use welsh_powell::welsh_powell_coloring;