Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/gp/gp.params @ 12912

Last change on this file since 12912 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 1.1 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# This parameter file extends simple to provide some GP-specific stuff.
7# Default type constraints are given for typeless GP programming also.
8#
9
10
11# My parent:
12parent.0 =        ../simple/simple.params
13
14
15# ec.gp.GPData
16# ==============================
17
18# set this elsewhere!
19# gp.gpdata =
20
21
22# ec.Subpopulation
23# ==============================
24
25# You might change this, but it must be a GPSpeciesForm!
26pop.subpop.0.species =      ec.gp.GPSpecies
27
28# ec.Species
29# ==============================
30
31pop.subpop.0.species.ind =    ec.gp.GPIndividual
32
33#You need to provide a basic pipe -- if you want to pick from among
34#pipes (like Koza does, 10% reproduction and 90% crossover), see
35#ec.breed.MultiBreedingPipeline
36#pop.subpop.0.species.pipe =
37#...
38
39
40# ec.GPIndividual
41# ==============================
42
43# We'll define a single tree -- you might want to change its class
44pop.subpop.0.species.ind.numtrees = 1
45pop.subpop.0.species.ind.tree.0 = ec.gp.GPTree
46
47
48# ec.GPTree
49# ==============================
50
Note: See TracBrowser for help on using the repository browser.