4

I read about the hill climbing algorithms, the simulating annealing algorithm, but I am confused. What is the basic purpose of local search methods?

nbro
  • 42,615
  • 12
  • 119
  • 217
Iram Shah
  • 315
  • 2
  • 5
  • 14

1 Answers1

0

Hill climbing, Simulated annealing, genetic algorithms are different variants of local search algorithm. Hill Climbing use to find good solution for NP-hard problems. Simulated annealing was first used extensively to solve VLSI layout problems. It has been applied widely to factory scheduling and other large-scale optimization tasks. Genetic algorithm have had a wide-spread impact on optimization problems, such as circuit layout and job-shop scheduling.

nbro
  • 42,615
  • 12
  • 119
  • 217
Huma Qaseem
  • 199
  • 1
  • 3
  • 12