Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/moosuite/nsga2.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.3 KB
Line 
1# Copyright 2010 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 = ../../multiobjective/nsga2/nsga2.params
6
7
8# NSGA-II wil use a population size of 100.  Its archive will be another 100
9# on top of that.  Since we're not reevaluating elites, only the 100 new
10# individuals will be bred and evaluated each generation.
11#
12# For more discussion about how to get SPEA2 and NSGA-II to have "equivalent"
13# numbers of evaluations in ECJ, see the README files for the SPEA2 and NSGA-II
14# packages.
15#
16# constants from  "Zitzler, E., Deb, K., and Thiele, L., 2000,
17# Comparison of Multiobjective Evolutionary Algorithms: Empirical Results,
18# Evolutionary Computation, Vol. 8, No. 2, pp173-195."
19#
20pop.subpop.0.size =                     100
21generations =                           250
22
23
24# NSGA2's pipeline
25
26pop.subpop.0.species.pipe         = ec.vector.breed.VectorMutationPipeline
27pop.subpop.0.species.pipe.likelihood          = 1.0
28pop.subpop.0.species.pipe.source.0    = ec.vector.breed.VectorCrossoverPipeline
29pop.subpop.0.species.pipe.source.0.likelihood   = 0.9
30pop.subpop.0.species.pipe.source.0.source.0   = ec.select.TournamentSelection
31pop.subpop.0.species.pipe.source.0.source.1   = same
32select.tournament.size        = 2
33
Note: See TracBrowser for help on using the repository browser.