Skip to content
Ben Abelshausen edited this page Nov 25, 2016 · 1 revision

Itinero.Logistics is a library on top of the Itinero routing core to solve routing optimization problems. The most important features:

  • Solving the Travelling Salesman Problem (TSP).
  • Solving the TSP with time windows (TSP-TW).
  • Calculating large weight matrices.

Most of this is implemented using a combination of custom local search algorithms, Genetic Algorithms, Variable Neighbourhood Search, ...

Getting started

Install Itinero.Logistics in a .NET project

Itinero is available as a Nuget package:

PM> Install-Package Itinero.Logistics -IncludePrerelease

This will install both Itinero.Logistics and Itinero.Logistics.Routing.

Clone this wiki locally