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 | quit-on-run-complete = true
|
---|
9 | eval = ec.coevolve.CompetitiveEvaluator
|
---|
10 |
|
---|
11 | pop = ec.Population
|
---|
12 | pop.subpops = 1
|
---|
13 | pop.subpop.0 = ec.Subpopulation
|
---|
14 | pop.subpop.0.size = 31
|
---|
15 | pop.subpop.0.duplicate-retries = 2
|
---|
16 | pop.subpop.0.species = ec.vector.VectorSpecies
|
---|
17 | pop.subpop.0.species.genome-size = 50
|
---|
18 | pop.subpop.0.species.chunk-size = 1
|
---|
19 | pop.subpop.0.species.pipe = ec.breed.ForceBreedingPipeline
|
---|
20 | pop.subpop.0.species.pipe.num-inds = 2
|
---|
21 | pop.subpop.0.species.pipe.source.0 = ec.vector.breed.VectorMutationPipeline
|
---|
22 | pop.subpop.0.species.pipe.source.0.source.0 = ec.vector.breed.VectorCrossoverPipeline
|
---|
23 | pop.subpop.0.species.pipe.source.0.source.0.source.0 = ec.select.TournamentSelection
|
---|
24 | pop.subpop.0.species.pipe.source.0.source.0.source.0.size = 3
|
---|
25 | pop.subpop.0.species.pipe.source.0.source.0.source.1 = same
|
---|
26 | pop.subpop.0.species.pipe.source.0.source.0.source.1.size = 3
|
---|
27 |
|
---|
28 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
29 | pop.subpop.0.species.ind = ec.vector.BitVectorIndividual
|
---|
30 | pop.subpop.0.species.mutation-prob = 0.01
|
---|
31 | pop.subpop.0.species.crossover-type = one
|
---|
32 |
|
---|
33 | stat.file $out.stat
|
---|
34 |
|
---|
35 | select.tournament.size = 2
|
---|
36 |
|
---|
37 | eval.problem = ec.app.coevolve1.CompetitiveMaxOne
|
---|
38 | eval.problem.hist-size = 1
|
---|
39 | stat.child.0.hist-size = 1
|
---|
40 | stat.child.0.file = compete.stat
|
---|
41 |
|
---|
42 | stat = ec.simple.SimpleStatistics
|
---|
43 | stat.gather-full = true
|
---|
44 | stat.num-children = 0
|
---|
45 |
|
---|
46 | breed.elite.0 = 1
|
---|
47 |
|
---|
48 | # for single elimination tournament
|
---|
49 | #eval.style = single-elim-tournament
|
---|
50 |
|
---|
51 | # for round robin
|
---|
52 | #eval.style = round-robin
|
---|
53 |
|
---|
54 | # for random one way tournament
|
---|
55 | eval.style = rand-1-way
|
---|
56 | eval.group-size = 7
|
---|
57 |
|
---|
58 | # for random two way tournament
|
---|
59 | #eval.style = rand-2-way
|
---|
60 | #eval.group-size = 7
|
---|
61 |
|
---|