Local Search Algorithm

From GM-RKB
Jump to navigation Jump to search

A Local Search Algorithm is a search algorithm that moves from solution to solution in the space of candidate solutions until a solution deemed optimal is found or a time bound is elapsed.



References

2016

2010

  • http://en.wikipedia.org/wiki/Local_search_%28optimization%29
    • … Some problems where local search has been applied are:
    • Most problems can be formulated in terms of search space and target in several different manners. For example, for the travelling salesman problem a solution can be a cycle and the criterion to maximize is a combination of the number of nodes and the length of the cycle. But a solution can also be a path, and being a cycle is part of the target.
    • A local search algorithm starts from a candidate solution and then iteratively moves to a neighbor solution. This is only possible if a neighborhood relation is defined on the search space. As an example, the neighborhood of a vertex cover is another vertex cover only differing by one node. For boolean satisfiability, the neighbors of a truth assignment are usually the truth assignments only differing from it by the evaluation of a variable. The same problem may have multiple different neighborhoods defined on it; local optimization with neighborhoods that involve changing up to [math]\displaystyle{ k }[/math] components of the solution is often referred to as k-opt.
  • http://en.wikipedia.org/wiki/Hill_climbing

2007

  • (Michiels et al., 2007) ⇒ Wil Michiels, Emile H. L. Aarts, and Jan Korst. (2007). “Theoretical Aspects of Local Search." Springer. ISBN:3540358536
    • BOOK OVERVIEW: Local search has been applied successfully to a diverse collection of optimization problems. It's appreciated for its basic conceptual foundation, its general applicability, and its power to serve as a source for new search paradigms. The typical characteristics of combinatorial optimization problems to which local search can be applied, its relation to complexity theory, and the combination with randomized search features have led to a wealth of interesting theoretical results. However, these results are scattered throughout the literature. This is the first book that presents a large collection of theoretical results in a consistent manner, thus providing the reader with a coherent overview of the achievements obtained so far, but also serving as a source of inspiration for the development of novel results in the challenging field of local search.