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.SimpleCoevolutionaryEvaluator
|
---|
15 |
|
---|
16 | generations = 500
|
---|
17 | checkpoint = false
|
---|
18 | prefix = ec
|
---|
19 | checkpoint-modulo = 1
|
---|
20 |
|
---|
21 | pop.subpops = 2
|
---|
22 | pop.subpop.0 = ec.Subpopulation
|
---|
23 | pop.subpop.1 = ec.Subpopulation
|
---|
24 |
|
---|
25 | pop.subpop.0.size = 25
|
---|
26 | pop.subpop.1.size = 25
|
---|
27 | pop.subpop.0.duplicate-retries = 0
|
---|
28 | pop.subpop.1.duplicate-retries = 0
|
---|
29 |
|
---|
30 | pop.subpop.0.species = ec.vector.VectorSpecies
|
---|
31 | pop.subpop.1.species = ec.vector.VectorSpecies
|
---|
32 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
33 | pop.subpop.1.species.fitness = ec.simple.SimpleFitness
|
---|
34 | pop.subpop.0.species.ind = ec.vector.BitVectorIndividual
|
---|
35 | pop.subpop.1.species.ind = ec.vector.BitVectorIndividual
|
---|
36 |
|
---|
37 | pop.subpop.0.species.genome-size = 100
|
---|
38 | pop.subpop.1.species.genome-size = 100
|
---|
39 | pop.subpop.0.species.crossover-type = one
|
---|
40 | pop.subpop.1.species.crossover-type = one
|
---|
41 | pop.subpop.0.species.mutation-prob = 0.05
|
---|
42 | pop.subpop.1.species.mutation-prob = 0.05
|
---|
43 |
|
---|
44 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
45 | pop.subpop.1.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
46 | pop.subpop.0.species.pipe.source.0 = ec.select.FitProportionateSelection
|
---|
47 | pop.subpop.1.species.pipe.source.0 = ec.select.FitProportionateSelection
|
---|
48 |
|
---|
49 | eval.problem = coevolution.app.numbers_game.MultiDimensionalNumbersGame2
|
---|
50 | eval.problem.dimensions = 10
|
---|
51 | eval.problem.dimension-size = 10
|
---|
52 | eval.interaction-scheme = coevolution.interaction.InterPopulationInteractionScheme
|
---|
53 | eval.subpop.0.sampling-method = coevolution.sampling.RandomSamplingMethod
|
---|
54 | eval.subpop.0.sampling-method.sample-size = 15
|
---|
55 | eval.subpop.0.fitness-method = coevolution.fitness.SimpleSumFitness
|
---|
56 | eval.subpop.1.sampling-method = coevolution.sampling.RandomSamplingMethod
|
---|
57 | eval.subpop.1.sampling-method.sample-size = 15
|
---|
58 | eval.subpop.1.fitness-method = coevolution.fitness.SimpleSumFitness
|
---|
59 |
|
---|
60 | stat.file = $out.stat
|
---|
61 | stat.num-children = 2
|
---|
62 | stat.child.0 = coevolution.statistics.AverageObjectiveFitnessChartStatistics
|
---|
63 | stat.child.0.title = Average performance
|
---|
64 | stat.child.0.x-axis-label = generation
|
---|
65 | stat.child.0.y-axis-label = fitness
|
---|
66 | stat.child.0.fitness-calc = coevolution.app.numbers_game.MultiDimensionalNumbersGame2
|
---|
67 | stat.child.0.fitness-calc.dimensions = 10
|
---|
68 | stat.child.0.fitness-calc.dimension-size = 10
|
---|
69 | stat.child.1 = coevolution.statistics.AverageSubjectiveFitnessChartStatistics
|
---|
70 | stat.child.1.title = Average subjective performance
|
---|
71 | stat.child.1.x-axis-label = generation
|
---|
72 | stat.child.1.y-axis-label = fitness
|
---|
73 | stat.child.1.fitness-calc = coevolution.app.numbers_game.MultiDimensionalNumbersGame2
|
---|
74 | stat.child.1.fitness-calc.dimensions = 10
|
---|
75 | stat.child.1.fitness-calc.dimension-size = 10 |
---|