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

Last change on this file since 57 was 57, checked in by mszubert, 14 years ago

Population initialization parametrized - getSimplest macro is called with an appropriate additional parameter specifying initialization type.

File size: 2.6 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         = 1
27pop.subpop.1.size         = 1
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
36pop.subpop.0.species.ind.init-type      = 2
37
38pop.subpop.1.species            = framsticks.FramsticksSpecies
39pop.subpop.1.species.ind        = framsticks.FramsticksIndividual
40pop.subpop.1.species.fitness    = ec.simple.SimpleFitness
41pop.subpop.1.species.crossover-prob = 1.0
42pop.subpop.1.species.mutation-prob  = 0.1
43pop.subpop.1.species.ind.init-type      = 1
44
45pop.subpop.0.species.pipe                   = framsticks.FramsticksMutationPipeline
46pop.subpop.0.species.pipe.source.0          = framsticks.FramsticksCrossoverPipeline
47pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
48pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
49
50pop.subpop.1.species.pipe           = framsticks.FramsticksMutationPipeline
51pop.subpop.1.species.pipe.source.0  = ec.select.FitProportionateSelection
52
53select.tournament.size = 2
54
55eval.problem                  = framsticks.FramsticksCoevolutionaryProblem
56eval.interaction-scheme       = cecj.interaction.InterPopulationInteractionScheme
57eval.subpop.0.sampling-method = cecj.sampling.AllSamplingMethod
58eval.subpop.0.fitness-method  = cecj.fitness.SimpleSumFitness
59eval.subpop.1.sampling-method = cecj.sampling.AllSamplingMethod
60eval.subpop.1.fitness-method  = cecj.fitness.SimpleSumFitness
61
62breed.elite.0 = 2
63
64stat.file = $out.stat
65
66framsticks.directory-path = C:/Framsticks/
67framsticks.scripts-output = C:/Framsticks/scripts_output/genosEval.txt
68framsticks.settings-file  = C:/Framsticks/maze1.sim
69framsticks.working-directory = C:/Framsticks/
70framsticks.expdef = standard-eval
71framsticks.executable-cmd = frams -Q -e -s -icliutils.ini
Note: See TracBrowser for help on using the repository browser.