Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 6 and Version 7 of Documentation/Reference/Robust Taboo Search


Ignore:
Timestamp:
07/25/11 18:14:25 (13 years ago)
Author:
abeham
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Reference/Robust Taboo Search

    v6 v7  
    2222== Parameters ==
    2323||= Parameter        =||= Description =||
    24 || !AlternativeAspirationTenure || The time t that a move will be remembered for the alternative aspiration condition. ||
     24|| !AlternativeAspirationTenure || The time t that a move will be remembered for the alternative aspiration condition. If this value exceeds !MaximumIterations the alternative aspiration criterion is not used. The parameter !UseAlternativeAspiration is adapted accordingly if you change this value. ||
    2525|| Analyzer           || The analyzers that are applied after each iteration. ||
    26 || !MaximumIterations || The number of iterations that the algorithm should run. ||
    27 || !MaximumTabuTenure || The maximum tabu tenure. ||
    28 || !MinimumTabuTenure || The minimum tabu tenure (unused if !UseNewTabuTenureAdaptionScheme is set to true) ||
     26|| !MaximumIterations || The number of iterations that the algorithm should run. Again if this value exceeds !AlternativeAspirationTenure the parameter !UseAlternativeAspiration is adapted accordingly. ||
     27|| !MaximumTabuTenure || The maximum tabu tenure. This will be preinitialized to either 8*N or 1.1*N depending on whether !UseNewTabuTenureAdaptionScheme is true or not. ||
     28|| !MinimumTabuTenure || The minimum tabu tenure is unused (and set to 0) if !UseNewTabuTenureAdaptionScheme is set to true or otherwise initialized to 0.9*N. ||
    2929|| Seed                || The random seed used to initialize the new pseudo random number generator. ||
    3030|| !SetSeedRandomly    || True if the random seed should be set to a random value, otherwise false. ||
    31 || !TerminateOnOptimalSolution || True when the algorithm should stop if it reached a quality equal or smaller to the !BestKnownQuality. ||
    32 || !UseAlternativeAspiration || True if the alternative aspiration condition should be used that takes moves that have not been made for some time above others. ||
     31|| !TerminateOnOptimalSolution || True when the algorithm should stop if it reached a quality equal or smaller to the !BestKnownQuality. This is useful when you want to track at which iteration the algorithm found the optimum. It should however be set to false when the optimal quality is not known. ||
     32|| !UseAlternativeAspiration || True if the alternative aspiration condition should be used that takes moves that have not been made for some time above others. Enabling this will set !AlternativeAspirationTenure to a default value, disabling this option will set the tenure to the maximum integer value. ||
    3333|| !UseNewTabuTenureAdaptionScheme || In an updated version of his implementation, Eric Taillard introduced a different way to change the tabu tenure. Instead of setting it uniformly between min and max, it will be set between 0 and max according to a right-skewed distribution. Set this option to false if you want to optimize using the earlier 1991 version, and set to true if you want to optimize using the newer version. Please note that the !MinimumTabuTenure parameter has no effect in the new version. ||
    3434