Skip to main content

oxicuda_graphalg/tsp/
mod.rs

1//! Traveling Salesperson approximations/heuristics.
2
3pub mod christofides_approx;
4pub mod nearest_neighbor;
5pub mod two_opt;
6
7pub use christofides_approx::christofides_tour;
8pub use nearest_neighbor::nearest_neighbor_tour;
9pub use two_opt::two_opt_improve;