source: java/ecj/framsticks/frams.params

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

renamed parameter files

File size: 1.9 KB
RevLine 
[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]7verbosity = 0
[44]8
[55]9breedthreads  = 1
10evalthreads   = 1
11seed.0        = 4357
[44]12
[55]13state   = ec.simple.SimpleEvolutionState
[44]14
[55]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
[44]22
[55]23generations   = 200
24quit-on-run-complete  = true
25checkpoint    = false
26prefix        = ec
27checkpoint-modulo = 1
[44]28
[55]29stat.file = $out.stat
[44]30
[55]31pop.subpops   = 1
32pop.subpop.0  = ec.Subpopulation
[44]33
[55]34pop.subpop.0.size               = 15
35pop.subpop.0.duplicate-retries  = 0
36pop.subpop.0.species            = framsticks.FramsticksSpecies
[44]37
[55]38pop.subpop.0.species.fitness  = ec.simple.SimpleFitness
39pop.subpop.0.species.ind      = framsticks.FramsticksIndividual
[44]40
[55]41pop.subpop.0.species.crossover-prob = 1.0
42pop.subpop.0.species.mutation-prob  = 0.1
[44]43
[55]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
[44]48
[55]49select.tournament.size = 2
[44]50
[55]51eval.problem = framsticks.FramsticksEvolutionProblem
[44]52
53breed.elite.0 = 2
54
[51]55framsticks.debug = false
[44]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
[55]61framsticks.executable-cmd = frams -Q -e -s -icliutils.ini
Note: See TracBrowser for help on using the repository browser.