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 = ec.simple.SimpleStatistics
|
---|
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 = 15
|
---|
35 | pop.subpop.0.duplicate-retries = 0
|
---|
36 | pop.subpop.0.species = framsticks.FramsticksSpecies
|
---|
37 |
|
---|
38 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
39 | pop.subpop.0.species.ind = framsticks.FramsticksIndividual
|
---|
40 |
|
---|
41 | pop.subpop.0.species.crossover-prob = 1.0
|
---|
42 | pop.subpop.0.species.mutation-prob = 0.1
|
---|
43 |
|
---|
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
|
---|
48 |
|
---|
49 | select.tournament.size = 2
|
---|
50 |
|
---|
51 | eval.problem = framsticks.FramsticksEvolutionProblem
|
---|
52 |
|
---|
53 | breed.elite.0 = 2
|
---|
54 |
|
---|
55 | framsticks.debug = false
|
---|
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
|
---|
61 | framsticks.executable-cmd = frams -Q -e -s -icliutils.ini
|
---|