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.SimpleStatistics
|
---|
13 | exch = ec.simple.SimpleExchanger
|
---|
14 | eval = coevolution.eval.ArchivingCoevolutionaryEvaluator
|
---|
15 |
|
---|
16 | generations = 50
|
---|
17 | checkpoint = false
|
---|
18 | prefix = ec
|
---|
19 | checkpoint-modulo = 1
|
---|
20 |
|
---|
21 | pop.subpops = 1
|
---|
22 | pop.subpop.0 = coevolution.archive.ArchivingSubpopulation
|
---|
23 | pop.subpop.0.size = 5
|
---|
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 = 8
|
---|
30 | pop.subpop.0.species.crossover-type = one
|
---|
31 | pop.subpop.0.species.mutation-prob = 0.1
|
---|
32 |
|
---|
33 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
34 | pop.subpop.0.species.pipe.source.0 = ec.vector.breed.VectorCrossoverPipeline
|
---|
35 | pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
|
---|
36 | pop.subpop.0.species.pipe.source.0.source.1.size = 2
|
---|
37 |
|
---|
38 | pop.subpop.0.species.pipe.source.0.source.0 = ec.select.MultiSelection
|
---|
39 | pop.subpop.0.species.pipe.source.0.source.0.num-selects = 2
|
---|
40 | pop.subpop.0.species.pipe.source.0.source.0.select.0 = coevolution.archive.ArchiveRandomSelection
|
---|
41 | pop.subpop.0.species.pipe.source.0.source.0.select.0.prob = 0.5
|
---|
42 | pop.subpop.0.species.pipe.source.0.source.0.select.0.size = 5
|
---|
43 | pop.subpop.0.species.pipe.source.0.source.0.select.1 = ec.select.TournamentSelection
|
---|
44 | pop.subpop.0.species.pipe.source.0.source.0.select.1.size = 2
|
---|
45 | pop.subpop.0.species.pipe.source.0.source.0.select.1.prob = 0.5
|
---|
46 |
|
---|
47 | eval.archive = coevolution.archive.BestOfGenerationArchive
|
---|
48 | eval.problem = coevolution.app.numbers_game.SingleDimensionalNumbersGame
|
---|
49 | eval.statistics = coevolution.statistics.SimpleCoevolutionaryStatistics
|
---|
50 | eval.interaction-scheme = coevolution.interaction.IntraPopulationInteractionScheme
|
---|
51 | eval.subpop.0.sampling-method = coevolution.sampling.AllSamplingMethod
|
---|
52 | eval.subpop.0.fitness-method = coevolution.fitness.SimpleSumFitness
|
---|
53 | eval.subpop.0.archive-sampling-method = coevolution.sampling.AllSamplingMethod
|
---|
54 |
|
---|
55 | stat.file = $out.stat
|
---|
56 | stat.num-children = 1
|
---|
57 | stat.child.0 = coevolution.statistics.AverageObjectiveFitnessChartStatistics
|
---|
58 | stat.child.0.fitness-calc = coevolution.app.numbers_game.SingleDimensionalNumbersGame
|
---|
59 | stat.child.0.title = Average performance
|
---|
60 | stat.child.0.x-axis-label = generation
|
---|
61 | stat.child.0.y-axis-label = fitness |
---|