Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

09 - Vehicle Routing Problem

Variant: VRP with Time Windows and Capacity Constraints (TSP + Time Window + Knapsack)

← Back to Main Repository


Overview

The Vehicle Routing Problem (VRP) is a classic logistics optimization problem combining aspects of the Traveling Salesman Problem, time window scheduling, and knapsack constraints. It has direct applications in delivery services, supply chain management, and transportation planning.

VRP Visualization

Problem Description

Given:

  • A fleet of $k$ vehicles, each with capacity $X$
  • A central depot
  • A set of customers $C = {1,\ldots,n}$ with demands $d_i$ for $i \in C$
  • Time windows for each customer
  • Distance/cost matrix between all locations

Objective: Determine routes for all vehicles to serve all customers while:

  • Respecting vehicle capacity constraints
  • Satisfying time window requirements
  • Minimizing total distance or cost

Instance Parameters:

  • $k = 4$ vehicles
  • $n = 20$ customers

Directory Contents

  • instances/ - VRP problem instances
  • models/ - Mathematical model formulations
  • solutions/ - Optimal or best-known solutions
  • misc/ - Utility scripts and visualization tools

References