-
Notifications
You must be signed in to change notification settings - Fork 2
VRP Pickup Delivery Problem
VRPPDTW 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). Local search procedures often become stuck in poor-scoring areas or areas where scores plateau. In order to avoid these pitfalls and explore regions of the search space that would be left unexplored by other local search procedures, tabu search carefully explores the neighborhood of each solution as the search progresses. The solutions admitted to the new neighborhood, N^{}(x), are determined through the use of memory structures. Using these memory structures, the search progresses by iteratively moving from the current solution x to an improved solution x' in N^{}(x).