smart_pch_tsp/lib.rs
1//! Universal TSP path improver using the PCH (Position-Candidate-Hypothesis) paradigm.
2//!
3//! PCH can improve ANY existing TSP path from ANY algorithm.
4//! Works with any type that implements the `Point` trait.
5
6pub mod algorithms;
7pub mod core;
8
9pub use algorithms::pch_improve;
10pub use core::{City, Point};