1//! Traveling Salesperson approximations/heuristics.
23pub mod christofides_approx;
4pub mod nearest_neighbor;
5pub mod two_opt;
67pub use christofides_approx::christofides_tour;
8pub use nearest_neighbor::nearest_neighbor_tour;
9pub use two_opt::two_opt_improve;