Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/coevolve1/coevolve1.params @ 7611

Last change on this file since 7611 was 6152, checked in by bfarka, 14 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 =        ../../simple/simple.params
6
7generations =       100
8quit-on-run-complete =      true
9eval =          ec.coevolve.CompetitiveEvaluator
10
11pop =           ec.Population
12pop.subpops =       1
13pop.subpop.0 =        ec.Subpopulation
14pop.subpop.0.size =     31
15pop.subpop.0.duplicate-retries =  2
16pop.subpop.0.species =                  ec.vector.VectorSpecies
17pop.subpop.0.species.genome-size =  50
18pop.subpop.0.species.chunk-size = 1
19pop.subpop.0.species.pipe =     ec.breed.ForceBreedingPipeline
20pop.subpop.0.species.pipe.num-inds =  2
21pop.subpop.0.species.pipe.source.0 =  ec.vector.breed.VectorMutationPipeline
22pop.subpop.0.species.pipe.source.0.source.0 =     ec.vector.breed.VectorCrossoverPipeline
23pop.subpop.0.species.pipe.source.0.source.0.source.0 =    ec.select.TournamentSelection
24pop.subpop.0.species.pipe.source.0.source.0.source.0.size =   3
25pop.subpop.0.species.pipe.source.0.source.0.source.1 =      same
26pop.subpop.0.species.pipe.source.0.source.0.source.1.size =   3
27
28pop.subpop.0.species.fitness =    ec.simple.SimpleFitness
29pop.subpop.0.species.ind =    ec.vector.BitVectorIndividual
30pop.subpop.0.species.mutation-prob =  0.01
31pop.subpop.0.species.crossover-type =   one
32
33stat.file       $out.stat
34
35select.tournament.size = 2
36
37eval.problem =        ec.app.coevolve1.CompetitiveMaxOne
38eval.problem.hist-size =    1
39stat.child.0.hist-size =    1
40stat.child.0.file =     compete.stat
41
42stat =          ec.simple.SimpleStatistics
43stat.gather-full =      true
44stat.num-children =     0
45
46breed.elite.0 =       1
47
48# for single elimination tournament
49#eval.style =       single-elim-tournament
50
51# for round robin
52#eval.style =       round-robin
53
54# for random one way tournament
55eval.style =        rand-1-way
56eval.group-size =     7
57
58# for random two way tournament
59#eval.style =       rand-2-way
60#eval.group-size =      7
61
Note: See TracBrowser for help on using the repository browser.