Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/bbob/bbob.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: 1.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 = ../../ec.params
6
7eval.problem = ec.app.bbob.BBOBenchmarks
8eval.problem.type = sphere
9noise   =   none
10
11
12
13state =         ec.simple.SimpleEvolutionState
14init =          ec.simple.SimpleInitializer
15finish =              ec.simple.SimpleFinisher
16exch =          ec.simple.SimpleExchanger
17breed =         ec.simple.SimpleBreeder
18eval =          ec.simple.SimpleEvaluator
19stat =          ec.simple.SimpleStatistics
20generations =       50
21quit-on-run-complete =      true
22pop =           ec.Population
23pop.subpops =       1
24pop.subpop.0 =        ec.Subpopulation
25pop.subpop.0.duplicate-retries =  2
26pop.subpop.0.species =                  ec.vector.FloatVectorSpecies
27pop.subpop.0.species.pipe =     ec.vector.breed.VectorMutationPipeline
28pop.subpop.0.species.pipe.source.0 =  ec.vector.breed.VectorCrossoverPipeline
29pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
30pop.subpop.0.species.pipe.source.0.source.1 = same
31
32pop.subpop.0.species.fitness =    ec.simple.SimpleFitness
33pop.subpop.0.species.ind =    ec.vector.DoubleVectorIndividual
34
35# you can change these to whatever tickles your fancy
36pop.subpop.0.species.min-gene = -5.12
37pop.subpop.0.species.max-gene = 5.12
38pop.subpop.0.species.genome-size =  50
39
40
41select.tournament.size =    2
42pop.subpop.0.species.mutation-prob = 0.005
43pop.subpop.0.species.crossover-type = one
44
45pop.subpop.0.size =     200
46stat.file       $out.stat
Note: See TracBrowser for help on using the repository browser.