/VRPTW_ACO_Routing

C++ implementation of Vehicle Routing Problem with Time Windows (VRPTW), Ant Colony Optimization (ACO), Greedy Algorithm

Primary LanguageC++MIT LicenseMIT

C++ VRPTW with ACO and Greedy Algorithm

C++11 or later required

Problem description

Capacitated Vehicle Routing Problem (CVRP) and Vehicle Routing Problem with Time Windows(VRPTW) are briefly explained here

https://developers.google.com/optimization/routing/cvrp

http://cognitive-robotics17.csail.mit.edu/docs/tutorials/Tutorial10_Multi_vehicle_Routing_with_Time_Windows.pdf

I implemented 2 types of alogorithm, Ant Colony Optimization (ACO) and Greedy Algorithm.

Usage

Run the following command

make clean && make

./main.exe ./Probs/solomon_***/***.txt

the second argument is text file path

Acknowledgement

Public benchmark for VRPTW, Solomon's problem sets is obtained from "data" directory in this repo.

Example of Solution

e.g. seek minimum tour length by ACO

Screen Shot 2020-06-09 at 11 13 32 PM