Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 8 and Version 9 of UsersSamples


Ignore:
Timestamp:
06/07/10 17:37:49 (14 years ago)
Author:
mkofler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsersSamples

    v8 v9  
    5353 * Mutator: !InversionManipulator
    5454
    55 '''Problem:''' Single Objective Test Function
     55'''Problem:''' Travelling Salesman Problem
    5656
    5757'''Problem Parameters:'''
     
    5959 * !BestKnownSolution: The best known solution of this TSP instance (cf. TSP Lib)
    6060 * Coordinates: The x and y coordinates of the cities
     61 * DistanceMatrix: null
    6162 * Evaluator: !TSPRoundedEuclideanPathEvaluator
    6263 * Maximization: False
     
    103104[=#IslandGA]
    104105== Island Genentic Algorithm - TSP ==
    105 ''A description will follow shortly''
     106
     107'''Algorithm:''' Island Genetic Algorithm
     108
     109'''Algorithm Parameters:'''
     110 * Analyzer: !MultiAnalyzer
     111 * Crossover: !OrderCrossover2
     112 * Elites: 1
     113 * !EmigrantsSelector: !BestSelector
     114 * !ImmigrationReplacer: !WorstReplacer
     115 * !IslandAnalyzer: !MultiAnalyzer
     116 * !MaximumGenerations: 1000
     117 * !MigrationInterval: 50
     118 * !MigrationRate: 25%
     119 * Migrator: !UnidirectionalRingMigrator
     120 * !MutationProbability: 5%
     121 * Mutator: !InversionManipulator
     122 * !NumberOfIslands: 5
     123 * !PopulationSize: 100
     124 * Seed: -
     125 * Selector: !ProportionalSelector
     126 * !SetSeedRandomly: True
     127
     128
     129'''Problem:''' Travelling Salesman Problem
     130
     131'''Problem Parameters:'''
     132 * !BestKnownQuality: 6110
     133 * !BestKnownSolution: The best known solution of this TSP instance (cf. TSP Lib)
     134 * Coordinates: The x and y coordinates of the cities
     135 * !DistanceMatrix: null
     136 * Evaluator: !TSPRoundedEuclideanPathEvaluator
     137 * Maximization: False
     138 * !SolutionCreator: !RandomPermutationCreator
     139 * !UseDistanceMatrix: True
    106140
    107141[=#LSKnapsack]