Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/coevolve2/coevolve2.params @ 11049

Last change on this file since 11049 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 2.5 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
5parent.0 =                              ../../simple/simple.params
6
7generations =       100
8#print-used-params =      true
9quit-on-run-complete =      false
10
11eval =                                  ec.coevolve.MultiPopCoevolutionaryEvaluator
12
13eval.num-current=     4
14eval.num-elites =     1
15eval.num-prev =       2
16eval.select-current =     ec.select.RandomSelection
17eval.select-prev =      ec.select.RandomSelection
18
19eval.problem =                          ec.app.coevolve2.CoevolutionaryRosenbrock
20
21pop.subpops =                           2
22pop.subpop.0 =        ec.Subpopulation
23pop.subpop.0.duplicate-retries =  10
24pop.subpop.0.size =       16
25pop.subpop.0.species =      ec.vector.FloatVectorSpecies
26pop.subpop.0.species.crossover-type =   one
27pop.subpop.0.species.genome-size =  5
28pop.subpop.0.species.fitness =    ec.simple.SimpleFitness
29pop.subpop.0.species.ind =    ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
30pop.subpop.0.species.min-gene =   -5.12
31pop.subpop.0.species.max-gene =   5.12
32pop.subpop.0.species.pipe =             ec.vector.breed.VectorMutationPipeline
33pop.subpop.0.species.mutation-type =    gauss
34pop.subpop.0.species.mutation-stdev =   0.25
35pop.subpop.0.species.mutation-prob =    0.95
36pop.subpop.0.species.pipe.source.0 =    ec.select.TournamentSelection
37pop.subpop.0.species.pipe.source.0.size =   2
38
39pop.subpop.1 =        ec.Subpopulation
40pop.subpop.1.duplicate-retries =  10
41pop.subpop.1.size =       16
42pop.subpop.1.species =      ec.vector.FloatVectorSpecies
43pop.subpop.1.species.crossover-type =   one
44pop.subpop.1.species.genome-size =  5
45pop.subpop.1.species.fitness =    ec.simple.SimpleFitness
46pop.subpop.1.species.ind =    ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
47pop.subpop.1.species.min-gene =   -5.12
48pop.subpop.1.species.max-gene =   5.12
49pop.subpop.1.species.pipe =             ec.vector.breed.VectorMutationPipeline
50pop.subpop.1.species.mutation-type =    gauss
51pop.subpop.1.species.mutation-stdev =   0.25
52pop.subpop.1.species.mutation-prob =    0.95
53pop.subpop.1.species.pipe.source.0 =    ec.select.TournamentSelection
54pop.subpop.1.species.pipe.source.0.size =   2
55
56stat =                                  ec.simple.SimpleStatistics
57stat.file =       $out.stat
58stat.num-children =       1
59stat.child.0 =        ec.simple.SimpleShortStatistics
60stat.child.0.file =     $out2.stat
61
62breed.elite.0 =       1
63breed.elite.1 =       1
Note: See TracBrowser for help on using the repository browser.