Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/steadystate/steadystate.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.4 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#
6# Some sample aditional parameters for steady-state evolution,
7# beyond what's provided in, say, simple/simple.params
8#
9
10# ec.Evolve
11# ==============================
12
13# simple generational evolution
14state =         ec.steadystate.SteadyStateEvolutionState
15
16# We can EITHER say to run for N evaluations of subpopulation 0
17# (evaluations in other subpopulations are not counted) like this:
18# evaluations = 50000
19
20# ... or we can say to run for N generations, where a generation
21# is equal to the size of subpopulation 0.  After the initial population
22# is evaluated, only one additional individual is evaluated each time
23# generations = 50
24
25# threads should be 1 each
26evalthreads =         1
27breedthreads =        1
28
29# ec.EvolutionState
30# ==============================
31
32# We'll use a SimpleExchanger
33exch =          ec.simple.SimpleExchanger
34
35# We MUST use a SteadyStateBreeder and SteadyStateEvaluator
36breed =         ec.steadystate.SteadyStateBreeder
37eval =          ec.steadystate.SteadyStateEvaluator
38
39# We must specify a deselector for each subpopulation.  Here is random
40# deselection for subpopulation 0.
41steady.deselector.0 =     ec.select.TournamentSelection
42steady.deselector.0.size =    1
43steady.deselector.0.pick-worst =  true
44
45# Traditionally, steady-state GAs try hard not to produce duplicates.
46steady.duplicate-retries =    100
Note: See TracBrowser for help on using the repository browser.