Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/tutorial1.params @ 7868

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

added dokumentation for the service #1441

File size: 1.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
5# The parameters that were laid out in Tutorial 1 (see the documentation)
6
7verbosity = 0
8
9breedthreads  = 1
10evalthreads = 1
11seed.0    = 4357
12
13state   = ec.simple.SimpleEvolutionState
14
15pop   = ec.Population
16init    = ec.simple.SimpleInitializer
17finish    = ec.simple.SimpleFinisher
18breed   = ec.simple.SimpleBreeder
19eval    = ec.simple.SimpleEvaluator
20stat    = com.heuristiclab.okb.ecj.OKBStatistics
21exch    = ec.simple.SimpleExchanger
22
23generations   = 200
24quit-on-run-complete  = true
25checkpoint    = false
26prefix      = ec
27checkpoint-modulo = 1
28
29stat.file   = $out.stat
30
31pop.subpops   = 1
32pop.subpop.0    = ec.Subpopulation
33
34pop.subpop.0.size     = 10
35pop.subpop.0.duplicate-retries  = 0
36pop.subpop.0.species    = ec.vector.VectorSpecies
37
38pop.subpop.0.species.fitness  = ec.simple.SimpleFitness
39pop.subpop.0.species.ind  = ec.vector.BitVectorIndividual
40
41pop.subpop.0.species.genome-size  = 20
42pop.subpop.0.species.crossover-type = one
43pop.subpop.0.species.crossover-prob = 1.0
44pop.subpop.0.species.mutation-prob  = 0.01
45
46pop.subpop.0.species.pipe     = ec.vector.breed.VectorMutationPipeline
47pop.subpop.0.species.pipe.source.0    = ec.vector.breed.VectorCrossoverPipeline
48pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
49pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
50
51select.tournament.size    = 2
52print-all-params = true
53eval.problem    = ec.app.tutorial1.MaxOnes
54
55stat    = com.heuristiclab.okb.ecj.OKBStatistics
56okb.parameter = pop.subpop.0.size; pop.subpop.0.duplicate-retrie
57okb.parameter.seed = seed.0
58okb.user = okbtester
59okb.password = okbtester
Note: See TracBrowser for help on using the repository browser.