1//! This is an umbrella module for all kinds of approximate TSP solvers. 2pub mod christofides; 3pub mod matching; 4pub mod nearest_neighbour;