source: java/ecj/app/numbers_game/singlePopArchivingSingleDimNumbersGame.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: 2.6 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.ArchivingCoevolutionaryEvaluator
15
16generations                             = 50
17checkpoint                              = false
18prefix                                  = ec
19checkpoint-modulo               = 1
20
21pop.subpops                                             = 1
22pop.subpop.0                                    = coevolution.archive.ArchivingSubpopulation
23pop.subpop.0.size                               = 5
24pop.subpop.0.duplicate-retries  = 0
25
26pop.subpop.0.species                            = ec.vector.VectorSpecies
27pop.subpop.0.species.ind                        = ec.vector.BitVectorIndividual
28pop.subpop.0.species.fitness            = ec.simple.SimpleFitness
29pop.subpop.0.species.genome-size        = 8
30pop.subpop.0.species.crossover-type     = one
31pop.subpop.0.species.mutation-prob      = 0.1
32
33pop.subpop.0.species.pipe                                                       = ec.vector.breed.VectorMutationPipeline
34pop.subpop.0.species.pipe.source.0                                      = ec.vector.breed.VectorCrossoverPipeline
35pop.subpop.0.species.pipe.source.0.source.1                     = ec.select.TournamentSelection
36pop.subpop.0.species.pipe.source.0.source.1.size        = 2
37
38pop.subpop.0.species.pipe.source.0.source.0                                     = ec.select.MultiSelection
39pop.subpop.0.species.pipe.source.0.source.0.num-selects         = 2
40pop.subpop.0.species.pipe.source.0.source.0.select.0            = coevolution.archive.ArchiveRandomSelection
41pop.subpop.0.species.pipe.source.0.source.0.select.0.prob       = 0.5
42pop.subpop.0.species.pipe.source.0.source.0.select.0.size       = 5
43pop.subpop.0.species.pipe.source.0.source.0.select.1            = ec.select.TournamentSelection
44pop.subpop.0.species.pipe.source.0.source.0.select.1.size       = 2
45pop.subpop.0.species.pipe.source.0.source.0.select.1.prob       = 0.5
46
47eval.archive                                                                            = coevolution.archive.BestOfGenerationArchive
48eval.problem                                                                            = coevolution.app.numbers_game.SingleDimensionalNumbersGame
49eval.statistics                                                                         = coevolution.statistics.SimpleCoevolutionaryStatistics
50eval.interaction-scheme                                                         = coevolution.interaction.IntraPopulationInteractionScheme
51eval.subpop.0.sampling-method                                           = coevolution.sampling.AllSamplingMethod
52eval.subpop.0.fitness-method                                            = coevolution.fitness.SimpleSumFitness
53eval.subpop.0.archive-sampling-method                           = coevolution.sampling.AllSamplingMethod
54
55stat.file               = $out.stat
56stat.num-children                       = 1
57stat.child.0                            = coevolution.statistics.AverageObjectiveFitnessChartStatistics
58stat.child.0.fitness-calc       = coevolution.app.numbers_game.SingleDimensionalNumbersGame
59stat.child.0.title                      = Average performance
60stat.child.0.x-axis-label       = generation
61stat.child.0.y-axis-label       = fitness
Note: See TracBrowser for help on using the repository browser.