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
//! Core data structures and traits.

pub mod city;
pub mod distance;
pub mod point;

pub use city::City;
pub use distance::{calculate_cycle_distance, compute_dist_matrix};
pub use point::Point;