//! A simple implementation of the [Travelling Salesman Problem (TSP)](https://en.wikipedia.org/wiki/Travelling_salesman_problem) and [several metaheuristic solvers][solvers].
/// A node index.
pub type NodeIdx = usize;
/// Distance between nodes.
pub type Distance = f64;