Local Search Algorithm

Revision as of 11:11, 8 January 2013 by Gmelli (talk | contribs) (Text replace - " (2007)" to " (2007)")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

See: Search Task, Approximation Algorithm, Greedy Hill-Climbing Algorithm.



References

2010

  • http://en.wikipedia.org/wiki/Local_search_%28optimization%29
    • In computer science, local search is a metaheuristic for solving computationally hard optimization problems. Local search can be used on problems that can be formulated as finding a solution maximizing a criterion among a number of candidate solutions. Local search algorithms move from solution to solution in the space of candidate solutions (the search space) until a solution deemed optimal is found or a time bound is elapsed. 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 & 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.