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.SimpleCoevolutionaryEvaluator
|
---|
15 |
|
---|
16 | generations = 50
|
---|
17 | quit-on-run-complete = true
|
---|
18 | checkpoint = false
|
---|
19 | prefix = ec
|
---|
20 | checkpoint-modulo = 1
|
---|
21 |
|
---|
22 | stat.file = $out.stat
|
---|
23 |
|
---|
24 | pop.subpops = 1
|
---|
25 | pop.subpop.0 = ec.Subpopulation
|
---|
26 |
|
---|
27 | pop.subpop.0.size = 5
|
---|
28 | pop.subpop.0.duplicate-retries = 0
|
---|
29 | pop.subpop.0.species = ec.vector.VectorSpecies
|
---|
30 |
|
---|
31 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
32 | pop.subpop.0.species.ind = ec.vector.BitVectorIndividual
|
---|
33 |
|
---|
34 | pop.subpop.0.species.genome-size = 8
|
---|
35 | pop.subpop.0.species.crossover-type = one
|
---|
36 | pop.subpop.0.species.crossover-prob = 0.8
|
---|
37 | pop.subpop.0.species.mutation-prob = 0.1
|
---|
38 |
|
---|
39 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
40 | pop.subpop.0.species.pipe.source.0 = ec.vector.breed.VectorCrossoverPipeline
|
---|
41 | pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
|
---|
42 | pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
|
---|
43 |
|
---|
44 | select.tournament.size = 2
|
---|
45 | breed.elites.0 = 1
|
---|
46 |
|
---|
47 | eval.problem = coevolution.problems.SingleDimensionalNumbersGame
|
---|
48 | eval.interaction-scheme = coevolution.interaction.IntraPopulationInteractionScheme
|
---|
49 | eval.subpop.0.sampling-method = coevolution.sampling.AllSamplingMethod
|
---|
50 | eval.subpop.0.fitness-method = coevolution.fitness.SimpleSumFitness
|
---|
51 |
|
---|
52 | stat = ec.simple.SimpleShortStatistics
|
---|
53 | stat.num-children = 1
|
---|
54 | stat.child.0 = coevolution.statistics.AverageObjectiveFitnessChartStatistics
|
---|
55 | stat.child.0.fitness-calc = coevolution.problems.SingleDimensionalNumbersGame
|
---|
56 | stat.child.0.title = Average performance
|
---|
57 | stat.child.0.x-axis-label = generation
|
---|
58 | stat.child.0.y-axis-label = fitness |
---|