OR_location_routing_problem_study icon indicating copy to clipboard operation
OR_location_routing_problem_study copied to clipboard

Facility Location and routing problems: Survey, Models and Algorithm

Location routing problem problem

This repository contains an implemetation of several MIP concerning the Location routing problem. The Iphython notebooks provide a mathematical discription of those problem and the code to solve them with Cplex thought the Python API.

Faciliry Location Problem (FLP)

UFLP Uncapacitated Facility location
CFLP Capacitated Facility location
TUFLP Two-echelon Capacitated Facility location

Vehicle Routing Problem (VRP)

TSP Traveling Salesman
mTSP m Traveling Salesman

Creating your own script

You can can use the following template to easily formulate

Dependencies

I created a custom wrapper around the cplex python API that I use in the above examples: https://github.com/xNok/OR_CPLEX_solve