smart-pch-tsp 0.1.0

Universal TSP path improver using PCH (Position-Candidate-Hypothesis) paradigm with statistical path synthesis.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Universal TSP path improver using the PCH (Position-Candidate-Hypothesis) paradigm.
//!
//! PCH can improve ANY existing TSP path from ANY algorithm.
//! Works with any type that implements the `Point` trait.

pub mod algorithms;
pub mod core;

pub use algorithms::pch_improve;
pub use core::{City, Point};