Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/ecsuite/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: 1.9 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.ecsuite.ECSuite
8eval.problem.type = rastrigin
9#
10# optionally your type could be: rosenbrock, sphere, step, noisy-quartic,
11# or kdj-f1, kdj-f2, kdj-f3, or kdj-f4    (the kdj-foo names
12# are just aliases for other problems, useful for people who might
13# know them as specific problems in the DeJong test suite)
14# ...or booth, griewangk
15#
16
17
18state =         ec.simple.SimpleEvolutionState
19init =          ec.simple.SimpleInitializer
20finish =              ec.simple.SimpleFinisher
21exch =          ec.simple.SimpleExchanger
22breed =         ec.simple.SimpleBreeder
23eval =          ec.simple.SimpleEvaluator
24stat =          ec.simple.SimpleStatistics
25generations =       1000
26quit-on-run-complete =      true
27pop =           ec.Population
28pop.subpops =       1
29pop.subpop.0 =        ec.Subpopulation
30pop.subpop.0.duplicate-retries =  2
31pop.subpop.0.species =                  ec.vector.FloatVectorSpecies
32pop.subpop.0.species.pipe =     ec.vector.breed.VectorMutationPipeline
33pop.subpop.0.species.pipe.source.0 =  ec.vector.breed.VectorCrossoverPipeline
34pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
35pop.subpop.0.species.pipe.source.0.source.1 = same
36
37pop.subpop.0.species.fitness =    ec.simple.SimpleFitness
38pop.subpop.0.species.ind =    ec.vector.DoubleVectorIndividual
39pop.subpop.0.species.mutation-bounded = true
40
41# you can change these to whatever tickles your fancy
42pop.subpop.0.species.min-gene = -5.12
43pop.subpop.0.species.max-gene = 5.12
44pop.subpop.0.species.genome-size =  100
45
46
47select.tournament.size =    2
48pop.subpop.0.species.mutation-prob = 1.0
49pop.subpop.0.species.crossover-type = one
50pop.subpop.0.species.mutation-type = gauss
51pop.subpop.0.species.mutation-stdev = 0.01
52
53pop.subpop.0.size =     1000
54stat.file       $out.stat
Note: See TracBrowser for help on using the repository browser.