source: java/ecj/app/numbers_game/singlePopSingleDimNumbersGame.params @ 42

Last change on this file since 42 was 42, checked in by mszubert, 14 years ago

refactored cecj; framsticks package added

File size: 1.9 KB
Line 
1verbosity       = 0
2
3breedthreads    = 1
4evalthreads             = 1
5seed.0                  = 4357
6
7pop                     = ec.Population
8state           = ec.simple.SimpleEvolutionState
9init            = ec.simple.SimpleInitializer
10finish          = ec.simple.SimpleFinisher
11breed           = ec.simple.SimpleBreeder
12stat            = ec.simple.SimpleStatistics
13exch            = ec.simple.SimpleExchanger
14eval            = coevolution.eval.SimpleCoevolutionaryEvaluator
15
16generations                             = 50
17quit-on-run-complete    = true
18checkpoint                              = false
19prefix                                  = ec
20checkpoint-modulo               = 1
21
22stat.file               = $out.stat
23
24pop.subpops                     = 1
25pop.subpop.0            = ec.Subpopulation
26
27pop.subpop.0.size                               = 5
28pop.subpop.0.duplicate-retries  = 0
29pop.subpop.0.species                    = ec.vector.VectorSpecies
30
31pop.subpop.0.species.fitness            = ec.simple.SimpleFitness
32pop.subpop.0.species.ind                        = ec.vector.BitVectorIndividual
33
34pop.subpop.0.species.genome-size        = 8
35pop.subpop.0.species.crossover-type     = one
36pop.subpop.0.species.crossover-prob     = 0.8
37pop.subpop.0.species.mutation-prob      = 0.1
38
39pop.subpop.0.species.pipe                                       = ec.vector.breed.VectorMutationPipeline
40pop.subpop.0.species.pipe.source.0                      = ec.vector.breed.VectorCrossoverPipeline
41pop.subpop.0.species.pipe.source.0.source.0     = ec.select.TournamentSelection
42pop.subpop.0.species.pipe.source.0.source.1     = ec.select.TournamentSelection
43
44select.tournament.size  = 2
45breed.elites.0                  = 1
46
47eval.problem                                    = coevolution.problems.SingleDimensionalNumbersGame
48eval.interaction-scheme                 = coevolution.interaction.IntraPopulationInteractionScheme
49eval.subpop.0.sampling-method   = coevolution.sampling.AllSamplingMethod
50eval.subpop.0.fitness-method    = coevolution.fitness.SimpleSumFitness
51
52stat                                            = ec.simple.SimpleShortStatistics
53stat.num-children                       = 1
54stat.child.0                            = coevolution.statistics.AverageObjectiveFitnessChartStatistics
55stat.child.0.fitness-calc       = coevolution.problems.SingleDimensionalNumbersGame
56stat.child.0.title                      = Average performance
57stat.child.0.x-axis-label       = generation
58stat.child.0.y-axis-label       = fitness
Note: See TracBrowser for help on using the repository browser.