rapid_solve 0.1.7

This library provides a metaheuristic framework for solving combinatorial optimization problems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A simple implementation of the [Travelling Salesman Problem (TSP)](https://en.wikipedia.org/wiki/Travelling_salesman_problem) and [several metaheuristic solvers][solvers].

pub mod neighborhood;
pub mod objective;
pub mod solvers;
pub mod tsp_instance;
pub mod tsp_tour;
pub mod tsp_tour_with_info;

/// A node index.
pub type NodeIdx = usize;

/// Distance between nodes.
pub type Distance = f64;