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
//! Traveling Salesperson approximations/heuristics.

pub mod christofides_approx;
pub mod nearest_neighbor;
pub mod two_opt;

pub use christofides_approx::christofides_tour;
pub use nearest_neighbor::nearest_neighbor_tour;
pub use two_opt::two_opt_improve;