-
Notifications
You must be signed in to change notification settings - Fork 2
VRP Pickup Delivery Problem
VRP-PDPTW using TABU search. The pickup and Delivery problem with Time Windows requires that a group of vehicles satisfy a collection of customer requests. Each customer request requires the use of a single vehicle both to load a specified amount of goods at one location and to deliver them to another location.
http://www.dim.uchile.cl/~tcapelle/TESIS/NanryPDPTW.pdf
It uses a local or neighborhood search procedure to iteratively move from one potential solution x to an improved solution x' in the neighborhood of x, until some stopping criterion has been satisfied (generally, an attempt limit or a score threshold).
It is a robust search technique that enhances classical tabu search by allowing the algorithm to automatically adjust the search parameters based on the state and quality of the search. It enables the algorithm to choose strategies and parameter values at each iteration.
-
The feasible initial solution
-
Move neighborhoods (Total-3)
(1) SPI - Single paired Insertions.
(2) SBR - Swapping between routes.
(3) WRI - Within Route insertion.