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 = ../ecsuite/ecsuite.params
|
---|
6 |
|
---|
7 | eval.problem = ec.app.coevolve2.CoevolutionaryECSuite
|
---|
8 | eval.problem.type = rosenbrock
|
---|
9 | #rastrigin
|
---|
10 |
|
---|
11 | #
|
---|
12 | # optionally your type could be: rosenbrock, sphere, step, noisy-quartic,
|
---|
13 | # or kdj-f1, kdj-f2, kdj-f3, or kdj-f4 (the kdj-foo names
|
---|
14 | # are just aliases for other problems, useful for people who might
|
---|
15 | # know them as specific problems in the DeJong test suite)
|
---|
16 | # ...or booth, griewangk
|
---|
17 | #
|
---|
18 |
|
---|
19 | eval = ec.coevolve.MultiPopCoevolutionaryEvaluator
|
---|
20 |
|
---|
21 | eval.num-current= 4
|
---|
22 | eval.num-elites = 1
|
---|
23 | eval.num-prev = 2
|
---|
24 | eval.select-current = ec.select.RandomSelection
|
---|
25 | eval.select-prev = ec.select.RandomSelection
|
---|
26 |
|
---|
27 | pop.subpops = 2
|
---|
28 | pop.subpop.0 = ec.Subpopulation
|
---|
29 | pop.subpop.0.duplicate-retries = 10
|
---|
30 | pop.subpop.0.size = 16
|
---|
31 | pop.subpop.0.species = ec.vector.FloatVectorSpecies
|
---|
32 | pop.subpop.0.species.crossover-type = one
|
---|
33 | pop.subpop.0.species.genome-size = 5
|
---|
34 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
35 | pop.subpop.0.species.ind = ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
|
---|
36 | pop.subpop.0.species.min-gene = -5.12
|
---|
37 | pop.subpop.0.species.max-gene = 5.12
|
---|
38 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
39 | pop.subpop.0.species.mutation-type = gauss
|
---|
40 | pop.subpop.0.species.mutation-stdev = 0.25
|
---|
41 | pop.subpop.0.species.mutation-prob = 0.95
|
---|
42 | pop.subpop.0.species.pipe.source.0 = ec.select.TournamentSelection
|
---|
43 | pop.subpop.0.species.pipe.source.0.size = 2
|
---|
44 |
|
---|
45 | pop.subpop.1 = ec.Subpopulation
|
---|
46 | pop.subpop.1.duplicate-retries = 10
|
---|
47 | pop.subpop.1.size = 16
|
---|
48 | pop.subpop.1.species = ec.vector.FloatVectorSpecies
|
---|
49 | pop.subpop.1.species.crossover-type = one
|
---|
50 | pop.subpop.1.species.genome-size = 5
|
---|
51 | pop.subpop.1.species.fitness = ec.simple.SimpleFitness
|
---|
52 | pop.subpop.1.species.ind = ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
|
---|
53 | pop.subpop.1.species.min-gene = -5.12
|
---|
54 | pop.subpop.1.species.max-gene = 5.12
|
---|
55 | pop.subpop.1.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
56 | pop.subpop.1.species.mutation-type = gauss
|
---|
57 | pop.subpop.1.species.mutation-stdev = 0.25
|
---|
58 | pop.subpop.1.species.mutation-prob = 0.95
|
---|
59 | pop.subpop.1.species.pipe.source.0 = ec.select.TournamentSelection
|
---|
60 | pop.subpop.1.species.pipe.source.0.size = 2
|
---|
61 |
|
---|