Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of SA


Ignore:
Timestamp:
06/07/10 09:33:27 (14 years ago)
Author:
mkofler
Comment:

Added SA description

Legend:

Unmodified
Added
Removed
Modified
  • SA

    v1 v1  
     1= Simulated Annealing =
     2Simulated Annealing is commonly said to be the oldest among the metaheuristics. It has its origins in the Metropolis algorithm which was published in 1953 and was adopted as a general metaheuristic, termed Simulated Annealing in 1983 by Kirkpatrick, Gelatt and Vecchi (Kirkpatrick et al. 1983) who demonstrated the algorithm on various problems of computer design and the traveling salesman problem.
     3
     4'''Cooling Schedules:'''
     5Cooling schedules may alter the speed at which the temperature is reduced depending on the current iteration, so that there are schedules that offer a slower initial decrease, or even inverse signum shaped schedules that intensify rapidly in about the middle of the search. There also exist cooling schedules that swap between a growing and a deteriorating temperature, also called ''reheating'' schedules, and which allow to diversify the search to a greater degree.
     6 * Geometric cooling schedule
     7 * Linear cooling schedule
     8
     9'''Algorithm Parameters:'''
     10||= Parameter         =||= Description =||
     11|| Analyzer            || The operator used to analyze each generation. ||
     12|| !AnnealingOperator   || The operator used to modify the temperature. ||
     13|| !EndTemperature      || The final temperature which should be reached when iterations reaches maximum iterations. ||
     14|| !InnerIterations     || The amount of inner iterations (number of moves before temperature is adjusted again). ||
     15|| !MaximumIterations   || The maximum number of generations which should be processed. ||
     16|| !MoveEvaluator       || The operator used to evaluate a move. ||
     17|| !MoveGenerator       || The operator used to generate moves to the neighborhood of the current solution. ||
     18|| !MoveMaker           || The operator used to perform a move. ||
     19|| Seed                || The random seed used to initialize the new pseudo random number generator. ||
     20|| !SetSeedRandomly    || True if the random seed should be set to a random value, otherwise false. ||
     21|| !StartTemperature    || The initial temperature. ||
     22
     23'''Is there a sample/tutorial?'''
     24
     25Yes. HeuristicLab comes with a simulated annealing algorithm that solves the 2-dimensional Rastrigin test function. Have a look at the description [[UsersTSPSample#SARastrigin| here]].
     26
     27'''References:'''
     28* Kirkpatrick, S., C. D. Gelatt, and M. P. Vecchi. 1983. Optimization by simulated annealing. Science 220:671–680.