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

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

renamed parameter files

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