1 | verbosity = 0
|
---|
2 |
|
---|
3 | breedthreads = 1
|
---|
4 | evalthreads = 1
|
---|
5 | seed.0 = 4357
|
---|
6 |
|
---|
7 | pop = ec.Population
|
---|
8 | state = ec.simple.SimpleEvolutionState
|
---|
9 | init = ec.simple.SimpleInitializer
|
---|
10 | finish = ec.simple.SimpleFinisher
|
---|
11 | breed = ec.simple.SimpleBreeder
|
---|
12 | stat = ec.simple.SimpleShortStatistics
|
---|
13 | exch = ec.simple.SimpleExchanger
|
---|
14 | eval = coevolution.eval.TournamentCoevolutionaryEvaluator
|
---|
15 |
|
---|
16 | generations = 500
|
---|
17 | checkpoint = false
|
---|
18 | prefix = ec
|
---|
19 | checkpoint-modulo = 1
|
---|
20 |
|
---|
21 | pop.subpops = 1
|
---|
22 | pop.subpop.0 = ec.Subpopulation
|
---|
23 | pop.subpop.0.size = 25
|
---|
24 | pop.subpop.0.duplicate-retries = 0
|
---|
25 |
|
---|
26 | pop.subpop.0.species = ec.vector.VectorSpecies
|
---|
27 | pop.subpop.0.species.ind = ec.vector.BitVectorIndividual
|
---|
28 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
29 | pop.subpop.0.species.genome-size = 100
|
---|
30 | pop.subpop.0.species.crossover-type = one
|
---|
31 | pop.subpop.0.species.mutation-prob = 0.05
|
---|
32 |
|
---|
33 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
34 | pop.subpop.0.species.pipe.source.0 = ec.select.FitProportionateSelection
|
---|
35 | pop.subpop.0.species.pipe.source.1 = ec.select.FitProportionateSelection
|
---|
36 |
|
---|
37 | eval.problem = coevolution.app.numbers_game.SingleDimensionalNumbersGame
|
---|
38 |
|
---|
39 | stat.file = $out.stat
|
---|
40 | stat.num-children = 2
|
---|
41 | stat.child.0 = coevolution.statistics.AverageObjectiveFitnessChartStatistics
|
---|
42 | stat.child.0.title = Average performance
|
---|
43 | stat.child.0.x-axis-label = generation
|
---|
44 | stat.child.0.y-axis-label = fitness
|
---|
45 | stat.child.0.fitness-calc = coevolution.app.numbers_game.SingleDimensionalNumbersGame
|
---|
46 | stat.child.1 = coevolution.statistics.AverageSubjectiveFitnessChartStatistics
|
---|
47 | stat.child.1.title = Average subjective performance
|
---|
48 | stat.child.1.x-axis-label = generation
|
---|
49 | stat.child.1.y-axis-label = fitness
|
---|
50 | stat.child.1.fitness-calc = coevolution.app.numbers_game.SingleDimensionalNumbersGame |
---|