Most search algorithms face the same dilemma: explore widely and waste time on bad territory, or exploit the best solution you know and get stuck in a local optimum. Scatter search, introduced by Fred Glover in the 1970s and formalized in the 1990s, offers a principled middle path.
The central idea is simple: keep a small reference set of solutions — not just the best ones, but also the most diverse ones. Then systematically combine pairs or subsets of that reference set to generate new candidate solutions. Improvement methods polish each new candidate, and the reference set is updated whenever something better or more diverse arrives.
This balance of quality and diversity is what separates scatter search from plain greedy algorithms: it is designed to cross solution components that no single greedy descent would ever assemble, yet it does not wander randomly — every combination is guided by the structure of the best solutions found so far.
Comments
Loading comments...