Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 11 and Version 12 of UsersSamples


Ignore:
Timestamp:
06/07/10 18:11:44 (14 years ago)
Author:
mkofler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsersSamples

    v11 v12  
    1212 * [#TSTSP Tabu Search - TSP]: A tabu search algorithm that solves the "ch130" TSP (imported from TSPLIB)
    1313
     14----
     15
    1416[=#ESGriewank]
    1517== Evolution Strategy - Griewank ==
     
    3840 * !SolutionCreator: !UniformRandomRealVectorCreator
    3941
     42----
     43
    4044[=#GATSP]
    4145== Genetic Algorithm - TSP ==
     
    6468 * !SolutionCreator: !RandomPermutationCreator
    6569 * !UseDistanceMatrix: True
     70
     71----
    6672
    6773[=#GPAA]
     
    98104 * World: 32x32 grid, 89 randomly scattered food items
    99105
     106----
     107
    100108[=#GPSR]
    101109== Genetic programming for symbolic regression ==
     
    121129 * !SymbolicExpressionTreeInterpreter: -
    122130 * !UpperEstimationLimit: 332,91031746031746
     131
     132----
    123133
    124134[=#IslandGA]
     
    158168 * !UseDistanceMatrix: True
    159169
     170----
     171
    160172[=#LSKnapsack]
    161173== Local Search - Knapsack ==
     
    186198 * Weights: The weights of the items.
    187199
     200----
     201
    188202[=#SARastrigin]
    189203== Simulated Annealing - Rastrigin ==
    190 ''A description will follow shortly''
     204
     205'''Algorithm:''' Simulated Annealing
     206
     207'''Algorithm Parameters:'''
     208 * Analyzer: !MultiAnalyzer
     209 * !AnnealingOperator: !ExponentialDiscreteDoubleValueModifier
     210 * !EndTemperature: 1E-06
     211 * !InnerIterations: 50
     212 * !MaximumIterations: 1000
     213 * !MoveEvaluator: !RastriginAdditiveMoveEvaluator
     214 * !MoveGenerator: !StochasticNormalMultiMoveGenerator
     215 * !MoveMaker: !AdditiveMoveMaker
     216 * Seed: -
     217 * !SetSeedRandomly: True
     218 * !StartTemperature: 1
     219
     220'''Problem:''' Single Objective Test Function
     221
     222'''Problem Parameters:'''
     223 * !BestKnownQuality: 0
     224 * !BestKnownSolution: [0;0]
     225 * Bounds: ([-5, 12], [-5,12])
     226 * Evaluator: !RastriginEvaluator
     227 * Maximization: False
     228 * !ProblemSize: 2
     229 * !SolutionCreator: !UniformRandomRealVectorCreator
     230
     231----
    191232
    192233[=#TSTSP]
    193234== Tabu Search - TSP ==
    194 ''A description will follow shortly''
     235
     236'''Algorithm:''' Tabu Search
     237
     238'''Algorithm Parameters:'''
     239 * Analyzer: !MultiAnalyzer
     240 * !MaximumIterations: 1000
     241 * !MoveEvaluator: TSPInversionMoveRoundedEuclideanPathEvaluator
     242 * !MoveGenerator: !StochasticInversionMultiMoveGenerator
     243 * !MoveMaker: !InversionMoveMaker
     244 * !SampleSize: 500
     245 * Seed: -
     246 * !SetSeedRandomly: True
     247 * !TabuChecker: !InversionMoveSoftTabuCriterion
     248 * !TabuMaker: !InversionMoveTabuMaker
     249 * !TabuTenure: 60
     250
     251'''Problem:''' Travelling Salesman Problem
     252
     253'''Problem Parameters:'''
     254 * !BestKnownQuality: 6110
     255 * !BestKnownSolution: The best known solution of this TSP instance (cf. TSP Lib)
     256 * Coordinates: The x and y coordinates of the cities
     257 * !DistanceMatrix: null
     258 * Evaluator: TSPRoundedEuclideanPathEvaluator
     259 * Maximization: False
     260 * !SolutionCreator: !RandomPermutationCreator
     261 * !UseDistanceMatrix: True