1 | # Copyright 2006 by Sean Luke and George Mason University
|
---|
2 | # Licensed under the Academic Free License version 3.0
|
---|
3 | # See the file "LICENSE" for more information
|
---|
4 |
|
---|
5 | parent.0 = ../../simple/simple.params
|
---|
6 |
|
---|
7 | generations = 100
|
---|
8 | #print-used-params = true
|
---|
9 | quit-on-run-complete = false
|
---|
10 |
|
---|
11 | eval = ec.coevolve.MultiPopCoevolutionaryEvaluator
|
---|
12 |
|
---|
13 | eval.num-current= 4
|
---|
14 | eval.num-elites = 1
|
---|
15 | eval.num-prev = 2
|
---|
16 | eval.select-current = ec.select.RandomSelection
|
---|
17 | eval.select-prev = ec.select.RandomSelection
|
---|
18 |
|
---|
19 | eval.problem = ec.app.coevolve2.CoevolutionaryRosenbrock
|
---|
20 |
|
---|
21 | pop.subpops = 2
|
---|
22 | pop.subpop.0 = ec.Subpopulation
|
---|
23 | pop.subpop.0.duplicate-retries = 10
|
---|
24 | pop.subpop.0.size = 16
|
---|
25 | pop.subpop.0.species = ec.vector.FloatVectorSpecies
|
---|
26 | pop.subpop.0.species.crossover-type = one
|
---|
27 | pop.subpop.0.species.genome-size = 5
|
---|
28 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
29 | pop.subpop.0.species.ind = ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
|
---|
30 | pop.subpop.0.species.min-gene = -5.12
|
---|
31 | pop.subpop.0.species.max-gene = 5.12
|
---|
32 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
33 | pop.subpop.0.species.mutation-type = gauss
|
---|
34 | pop.subpop.0.species.mutation-stdev = 0.25
|
---|
35 | pop.subpop.0.species.mutation-prob = 0.95
|
---|
36 | pop.subpop.0.species.pipe.source.0 = ec.select.TournamentSelection
|
---|
37 | pop.subpop.0.species.pipe.source.0.size = 2
|
---|
38 |
|
---|
39 | pop.subpop.1 = ec.Subpopulation
|
---|
40 | pop.subpop.1.duplicate-retries = 10
|
---|
41 | pop.subpop.1.size = 16
|
---|
42 | pop.subpop.1.species = ec.vector.FloatVectorSpecies
|
---|
43 | pop.subpop.1.species.crossover-type = one
|
---|
44 | pop.subpop.1.species.genome-size = 5
|
---|
45 | pop.subpop.1.species.fitness = ec.simple.SimpleFitness
|
---|
46 | pop.subpop.1.species.ind = ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
|
---|
47 | pop.subpop.1.species.min-gene = -5.12
|
---|
48 | pop.subpop.1.species.max-gene = 5.12
|
---|
49 | pop.subpop.1.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
50 | pop.subpop.1.species.mutation-type = gauss
|
---|
51 | pop.subpop.1.species.mutation-stdev = 0.25
|
---|
52 | pop.subpop.1.species.mutation-prob = 0.95
|
---|
53 | pop.subpop.1.species.pipe.source.0 = ec.select.TournamentSelection
|
---|
54 | pop.subpop.1.species.pipe.source.0.size = 2
|
---|
55 |
|
---|
56 | stat = ec.simple.SimpleStatistics
|
---|
57 | stat.file = $out.stat
|
---|
58 | stat.num-children = 1
|
---|
59 | stat.child.0 = ec.simple.SimpleShortStatistics
|
---|
60 | stat.child.0.file = $out2.stat
|
---|
61 |
|
---|
62 | breed.elite.0 = 1
|
---|
63 | breed.elite.1 = 1
|
---|