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 = ../../ec.params
|
---|
6 |
|
---|
7 | eval.problem = ec.app.bbob.BBOBenchmarks
|
---|
8 | eval.problem.type = sphere |
---|
9 | noise = none
|
---|
10 | |
---|
11 |
|
---|
12 |
|
---|
13 | state = ec.simple.SimpleEvolutionState
|
---|
14 | init = ec.simple.SimpleInitializer
|
---|
15 | finish = ec.simple.SimpleFinisher
|
---|
16 | exch = ec.simple.SimpleExchanger
|
---|
17 | breed = ec.simple.SimpleBreeder
|
---|
18 | eval = ec.simple.SimpleEvaluator
|
---|
19 | stat = ec.simple.SimpleStatistics
|
---|
20 | generations = 50
|
---|
21 | quit-on-run-complete = true
|
---|
22 | pop = ec.Population
|
---|
23 | pop.subpops = 1
|
---|
24 | pop.subpop.0 = ec.Subpopulation
|
---|
25 | pop.subpop.0.duplicate-retries = 2
|
---|
26 | pop.subpop.0.species = ec.vector.FloatVectorSpecies
|
---|
27 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
28 | pop.subpop.0.species.pipe.source.0 = ec.vector.breed.VectorCrossoverPipeline
|
---|
29 | pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
|
---|
30 | pop.subpop.0.species.pipe.source.0.source.1 = same
|
---|
31 |
|
---|
32 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
33 | pop.subpop.0.species.ind = ec.vector.DoubleVectorIndividual
|
---|
34 |
|
---|
35 | # you can change these to whatever tickles your fancy
|
---|
36 | pop.subpop.0.species.min-gene = -5.12
|
---|
37 | pop.subpop.0.species.max-gene = 5.12
|
---|
38 | pop.subpop.0.species.genome-size = 50
|
---|
39 |
|
---|
40 |
|
---|
41 | select.tournament.size = 2
|
---|
42 | pop.subpop.0.species.mutation-prob = 0.005
|
---|
43 | pop.subpop.0.species.crossover-type = one
|
---|
44 |
|
---|
45 | pop.subpop.0.size = 200
|
---|
46 | stat.file $out.stat
|
---|