美文网首页
Simulated Annealing Algorithm

Simulated Annealing Algorithm

作者: lcy1221 | 来源:发表于2019-01-03 19:25 被阅读0次

    #Initial Trial Solution

    #Initial Temperature

    The higher the initial temperature is, the more likely you are to jump out of the local minimum, but it will take more computation cost.

    几种常见的初始温度设定方法:

    - 随机地选择几组初始状态,计算出目标函数差的最大值\Delta _{max},用下式确定初始温度:

                                          $$exp[-\frac{\Delra_{max}}{T_{0}}]=Pr$$

    #Metropolis Principle

    #Cooling Procedure

    #How to End the Inner Loop and the Outer Loop

    - Sufficient number of cycles

    - Test if it is stable

    - To a minimum temperature

    相关文章

      网友评论

          本文标题:Simulated Annealing Algorithm

          本文链接:https://www.haomeiwen.com/subject/swrriftx.html