1 / 5

Simulated Annealing

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)

Samuel
Download Presentation

Simulated Annealing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Simulated Annealing Daniel Paden Tomasello

  2. 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:

  3. Simulationusing T(t) = T_intial * 0.9999^t file:///.file/id=6571367.5620849

  4. 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)

More Related