130 likes | 790 Views
Simulated Annealing. Daniel Paden Tomasello. Simulated Annealing Algorithm. An approximation algorithm used for global optimization. In my model, simulated annealing is used to help a robot, which may only detect surrounding elevations, find the highest elevation. (Local Search)
E N D
Simulated Annealing Daniel Paden Tomasello
Simulated Annealing Algorithm • An approximation algorithm used for global optimization. • In my model, simulated annealing is used to help a robot, which may only detect surrounding elevations, find the highest elevation. (Local Search) • The robot moves according to:
Simulationusing T(t) = T_intial * 0.9999^t file:///.file/id=6571367.5620849
How to run my code: • Set number or trials (for average iterations and percent correct) line 18 • Set initial temperature at line 70 • Set temperature function, lines 74-76 • movie1.gif T(t) = 0.9999^t • movie2.gif T(t) = 10/t • movie3.gif T(t) = 10 / ln(t)