Skip to content

VRP Pickup Delivery Problem

Manikanta edited this page Mar 11, 2014 · 24 revisions

VRP-PDPTW using TABU search.

http://www.dim.uchile.cl/~tcapelle/TESIS/NanryPDPTW.pdf

About # TABU# Search


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).

Reactive TABU Search :

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.

Algorithm :

  1. The feasible initial solution

  2. Move neighbourhoods (Total-3)

    (1) SPI - Single paired Insertions.

    (2) SBR - Swapping between routes.

    (3) WRI - Within Route insertion.

Clone this wiki locally