source: java/ecj/cecj/app/numbers_game/tournamentSingleDimNumbersGame.params @ 44

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

cecj, framsticks and games packages imported

File size: 1.8 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.SimpleShortStatistics
13exch            = ec.simple.SimpleExchanger
14eval            = coevolution.eval.TournamentCoevolutionaryEvaluator
15
16generations                             = 500
17checkpoint                              = false
18prefix                                  = ec
19checkpoint-modulo               = 1
20
21pop.subpops                                             = 1
22pop.subpop.0                                    = ec.Subpopulation
23pop.subpop.0.size                               = 25
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                        = 100
30pop.subpop.0.species.crossover-type                     = one
31pop.subpop.0.species.mutation-prob                      = 0.05
32
33pop.subpop.0.species.pipe                                       = ec.vector.breed.VectorMutationPipeline
34pop.subpop.0.species.pipe.source.0                      = ec.select.FitProportionateSelection
35pop.subpop.0.species.pipe.source.1                      = ec.select.FitProportionateSelection
36
37eval.problem            = coevolution.app.numbers_game.SingleDimensionalNumbersGame
38
39stat.file                                       = $out.stat
40stat.num-children                       = 2
41stat.child.0                            = coevolution.statistics.AverageObjectiveFitnessChartStatistics
42stat.child.0.title                      = Average performance
43stat.child.0.x-axis-label       = generation
44stat.child.0.y-axis-label       = fitness
45stat.child.0.fitness-calc       = coevolution.app.numbers_game.SingleDimensionalNumbersGame
46stat.child.1                            = coevolution.statistics.AverageSubjectiveFitnessChartStatistics
47stat.child.1.title                      = Average subjective performance
48stat.child.1.x-axis-label       = generation
49stat.child.1.y-axis-label       = fitness
50stat.child.1.fitness-calc       = coevolution.app.numbers_game.SingleDimensionalNumbersGame
Note: See TracBrowser for help on using the repository browser.