Changes between Version 7 and Version 8 of UsersSamples
- Timestamp:
- 06/07/10 13:47:28 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersSamples
v7 v8 68 68 [[Image(SantaFe Result.png, width=500, right, margin-right=30, margin-left=30)]] 69 69 70 '''Algorithm:''' Genetic Programming70 '''Algorithm:''' Genetic Algorithm 71 71 72 72 '''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 73 83 74 84 '''Problem:''' Artificial Ant Problem 75 85 76 86 '''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 77 98 78 99 [=#GPSR]