[44] | 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 |
|
---|
[55] | 7 | verbosity = 0
|
---|
[44] | 8 |
|
---|
[55] | 9 | breedthreads = 1
|
---|
| 10 | evalthreads = 1
|
---|
| 11 | seed.0 = 4357
|
---|
[44] | 12 |
|
---|
[55] | 13 | state = ec.simple.SimpleEvolutionState
|
---|
[44] | 14 |
|
---|
[55] | 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 = ec.simple.SimpleStatistics
|
---|
| 21 | exch = ec.simple.SimpleExchanger
|
---|
[44] | 22 |
|
---|
[55] | 23 | generations = 200
|
---|
| 24 | quit-on-run-complete = true
|
---|
| 25 | checkpoint = false
|
---|
| 26 | prefix = ec
|
---|
| 27 | checkpoint-modulo = 1
|
---|
[44] | 28 |
|
---|
[55] | 29 | stat.file = $out.stat
|
---|
[44] | 30 |
|
---|
[55] | 31 | pop.subpops = 1
|
---|
| 32 | pop.subpop.0 = ec.Subpopulation
|
---|
[44] | 33 |
|
---|
[55] | 34 | pop.subpop.0.size = 15
|
---|
| 35 | pop.subpop.0.duplicate-retries = 0
|
---|
| 36 | pop.subpop.0.species = framsticks.FramsticksSpecies
|
---|
[44] | 37 |
|
---|
[55] | 38 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
| 39 | pop.subpop.0.species.ind = framsticks.FramsticksIndividual
|
---|
[44] | 40 |
|
---|
[55] | 41 | pop.subpop.0.species.crossover-prob = 1.0
|
---|
| 42 | pop.subpop.0.species.mutation-prob = 0.1
|
---|
[44] | 43 |
|
---|
[55] | 44 | pop.subpop.0.species.pipe = framsticks.FramsticksMutationPipeline
|
---|
| 45 | pop.subpop.0.species.pipe.source.0 = framsticks.FramsticksCrossoverPipeline
|
---|
| 46 | pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
|
---|
| 47 | pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
|
---|
[44] | 48 |
|
---|
[55] | 49 | select.tournament.size = 2
|
---|
[44] | 50 |
|
---|
[55] | 51 | eval.problem = framsticks.FramsticksEvolutionProblem
|
---|
[44] | 52 |
|
---|
| 53 | breed.elite.0 = 2
|
---|
| 54 |
|
---|
[51] | 55 | framsticks.debug = false
|
---|
[44] | 56 | framsticks.directory-path = C:/Framsticks/
|
---|
| 57 | framsticks.scripts-output = C:/Framsticks/scripts_output/genosEval.txt
|
---|
| 58 | framsticks.settings-file = C:/Framsticks/maze1.sim
|
---|
| 59 | framsticks.working-directory = C:/Framsticks/
|
---|
| 60 | framsticks.expdef = standard-eval
|
---|
[55] | 61 | framsticks.executable-cmd = frams -Q -e -s -icliutils.ini
|
---|