source: java/ecj/framsticks/frams.params @ 55

Last change on this file since 55 was 55, checked in by Maciej Komosinski, 14 years ago

renamed parameter files

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