[6152] | 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 | # The parameters that were laid out in Tutorial 1 (see the documentation)
|
---|
| 6 |
|
---|
| 7 | verbosity = 0
|
---|
| 8 |
|
---|
| 9 | breedthreads = 1
|
---|
| 10 | evalthreads = 1
|
---|
| 11 | seed.0 = 4357
|
---|
| 12 |
|
---|
| 13 | state = ec.simple.SimpleEvolutionState
|
---|
| 14 |
|
---|
| 15 | pop = ec.Population
|
---|
| 16 | init = ec.simple.SimpleInitializer
|
---|
| 17 | finish = ec.simple.SimpleFinisher
|
---|
| 18 | breed = ec.simple.SimpleBreeder
|
---|
| 19 | eval = ec.simple.SimpleEvaluator
|
---|
| 20 | stat = com.heuristiclab.okb.ecj.OKBStatistics
|
---|
| 21 | exch = ec.simple.SimpleExchanger
|
---|
| 22 |
|
---|
| 23 | generations = 200
|
---|
| 24 | quit-on-run-complete = true
|
---|
| 25 | checkpoint = false
|
---|
| 26 | prefix = ec
|
---|
| 27 | checkpoint-modulo = 1
|
---|
| 28 |
|
---|
| 29 | stat.file = $out.stat
|
---|
| 30 |
|
---|
| 31 | pop.subpops = 1
|
---|
| 32 | pop.subpop.0 = ec.Subpopulation
|
---|
| 33 |
|
---|
| 34 | pop.subpop.0.size = 10
|
---|
| 35 | pop.subpop.0.duplicate-retries = 0
|
---|
| 36 | pop.subpop.0.species = ec.vector.VectorSpecies
|
---|
| 37 |
|
---|
| 38 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
| 39 | pop.subpop.0.species.ind = ec.vector.BitVectorIndividual
|
---|
| 40 |
|
---|
| 41 | pop.subpop.0.species.genome-size = 20
|
---|
| 42 | pop.subpop.0.species.crossover-type = one
|
---|
| 43 | pop.subpop.0.species.crossover-prob = 1.0
|
---|
| 44 | pop.subpop.0.species.mutation-prob = 0.01
|
---|
| 45 |
|
---|
| 46 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
| 47 | pop.subpop.0.species.pipe.source.0 = ec.vector.breed.VectorCrossoverPipeline
|
---|
| 48 | pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
|
---|
| 49 | pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
|
---|
| 50 |
|
---|
| 51 | select.tournament.size = 2
|
---|
| 52 | print-all-params = true
|
---|
| 53 | eval.problem = ec.app.tutorial1.MaxOnes
|
---|
[6326] | 54 |
|
---|
[6327] | 55 | stat = com.heuristiclab.okb.ecj.OKBStatistics
|
---|
[6326] | 56 | okb.parameter = pop.subpop.0.size; pop.subpop.0.duplicate-retrie
|
---|
[6327] | 57 | okb.parameter.seed = seed.0
|
---|
| 58 | okb.user = okbtester
|
---|
| 59 | okb.password = okbtester |
---|