tabusøk
Tabu search (tabusøk) is a metaheuristic optimization technique designed to solve combinatorial optimization problems by exploring neighboring solutions while avoiding cycles. It was introduced by Fred W. Glover in 1986. It uses memory structures to escape local optima and balance diversification and intensification.
The algorithm starts from an initial feasible solution. At each iteration it generates a neighborhood of solutions
Key components include short-term memory (the tabu list), diversification strategies to explore new regions, and intensification
Applications include vehicle routing, scheduling, job shop problems, the traveling salesman problem, facility layout, and network
Strengths of tabu search include robustness against local optima and flexibility to handle different constraint types.