Free cookie consent management tool by TermsFeed Policy Generator

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

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

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

File size: 2.7 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 = ../ecsuite/ecsuite.params
6
7eval.problem = ec.app.coevolve2.CoevolutionaryECSuite
8eval.problem.type = rosenbrock
9#rastrigin
10
11#
12# optionally your type could be: rosenbrock, sphere, step, noisy-quartic,
13# or kdj-f1, kdj-f2, kdj-f3, or kdj-f4    (the kdj-foo names
14# are just aliases for other problems, useful for people who might
15# know them as specific problems in the DeJong test suite)
16# ...or booth, griewangk
17#
18
19eval =                                  ec.coevolve.MultiPopCoevolutionaryEvaluator
20
21eval.num-current=                       4
22eval.num-elites =                       1
23eval.num-prev =                         2
24eval.select-current =                   ec.select.RandomSelection
25eval.select-prev =                      ec.select.RandomSelection
26
27pop.subpops =                           2
28pop.subpop.0 =                          ec.Subpopulation
29pop.subpop.0.duplicate-retries =        10
30pop.subpop.0.size =                     16
31pop.subpop.0.species =                  ec.vector.FloatVectorSpecies
32pop.subpop.0.species.crossover-type =   one
33pop.subpop.0.species.genome-size =      5
34pop.subpop.0.species.fitness =          ec.simple.SimpleFitness
35pop.subpop.0.species.ind =              ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
36pop.subpop.0.species.min-gene =         -5.12
37pop.subpop.0.species.max-gene =         5.12
38pop.subpop.0.species.pipe =             ec.vector.breed.VectorMutationPipeline
39pop.subpop.0.species.mutation-type =    gauss
40pop.subpop.0.species.mutation-stdev =   0.25
41pop.subpop.0.species.mutation-prob =    0.95
42pop.subpop.0.species.pipe.source.0 =            ec.select.TournamentSelection
43pop.subpop.0.species.pipe.source.0.size =       2
44
45pop.subpop.1 =                          ec.Subpopulation
46pop.subpop.1.duplicate-retries =        10
47pop.subpop.1.size =                     16
48pop.subpop.1.species =                  ec.vector.FloatVectorSpecies
49pop.subpop.1.species.crossover-type =   one
50pop.subpop.1.species.genome-size =      5
51pop.subpop.1.species.fitness =          ec.simple.SimpleFitness
52pop.subpop.1.species.ind =              ec.app.coevolve2.CoevolutionaryDoubleVectorIndividual
53pop.subpop.1.species.min-gene =         -5.12
54pop.subpop.1.species.max-gene =         5.12
55pop.subpop.1.species.pipe =             ec.vector.breed.VectorMutationPipeline
56pop.subpop.1.species.mutation-type =    gauss
57pop.subpop.1.species.mutation-stdev =   0.25
58pop.subpop.1.species.mutation-prob =    0.95
59pop.subpop.1.species.pipe.source.0 =            ec.select.TournamentSelection
60pop.subpop.1.species.pipe.source.0.size =       2
61
Note: See TracBrowser for help on using the repository browser.