Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 7 and Version 8 of UsersSamples


Ignore:
Timestamp:
06/07/10 13:47:28 (14 years ago)
Author:
mkofler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsersSamples

    v7 v8  
    6868[[Image(SantaFe Result.png, width=500, right, margin-right=30, margin-left=30)]]
    6969
    70 '''Algorithm:''' Genetic Programming
     70'''Algorithm:''' Genetic Algorithm
    7171
    7272'''Algorithm Parameters:'''
     73 * Analyzer: !MultiAnalyzer
     74 * Crossover: !SubtreeCrossover - An operator which performs subtree swapping crossover
     75 * Elites: 1
     76 * !MaximumGenerations: 100
     77 * !MutationProbability: 15%
     78 * Mutator: !MultiSymbolicExpressionTreeManipulator
     79 * Population Size: 500
     80 * Seed: -
     81 * Selector: !TournamentSelector
     82 * !SetSeedRandomly: True
    7383
    7484'''Problem:''' Artificial Ant Problem
    7585
    7686'''Problem Parameters:'''
     87 * !ArtificialAntExpressionGrammar: !IfFoodAhead, Prog2, Prog3, Right, Left, Move
     88 * !BestKnownQuality: 89
     89 * Evaluator: !ArtificialAntEvaluator
     90 * !MaxExpressionDepth: 6
     91 * !MaxExpressionLength: 50
     92 * !MaxFunctionArguments: 3
     93 * !MaxFunctionDefinitions: 3
     94 * Maximization: True
     95 * !MaxTimeSteps: 600
     96 * !SolutionCreator: !ProbabilisticTreeCreator
     97 * World: 32x32 grid, 89 randomly scattered food items
    7798
    7899[=#GPSR]