Last change
on this file since 9449 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
1.2 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 | parent.0 = ../../gp/koza/koza.params
|
---|
6 |
|
---|
7 | # Stolen from koza/params -- overwriting just
|
---|
8 | # a little for readability
|
---|
9 | # You need to create at least one function set,
|
---|
10 | # called "f0", which your first tree will use.
|
---|
11 |
|
---|
12 | gp.fs.size = 1
|
---|
13 | gp.fs.0.name = f0
|
---|
14 |
|
---|
15 | ### The functions, carefully ordered :-) (See below)
|
---|
16 |
|
---|
17 | gp.fs.0.func.0 = ec.app.ant.func.Left
|
---|
18 | gp.fs.0.func.0.nc = nc0
|
---|
19 | gp.fs.0.func.1 = ec.app.ant.func.Right
|
---|
20 | gp.fs.0.func.1.nc = nc0
|
---|
21 | gp.fs.0.func.2 = ec.app.ant.func.Move
|
---|
22 | gp.fs.0.func.2.nc = nc0
|
---|
23 | gp.fs.0.func.3 = ec.app.ant.func.IfFoodAhead
|
---|
24 | gp.fs.0.func.3.nc = nc2
|
---|
25 | gp.fs.0.func.4 = ec.app.ant.func.Progn2
|
---|
26 | gp.fs.0.func.4.nc = nc2
|
---|
27 | gp.fs.0.func.5 = ec.app.ant.func.Progn3
|
---|
28 | gp.fs.0.func.5.nc = nc3
|
---|
29 | # We won't use this one here
|
---|
30 | gp.fs.0.func.6 = ec.app.ant.func.Progn4
|
---|
31 | gp.fs.0.func.6.nc = nc4
|
---|
32 |
|
---|
33 |
|
---|
34 | #
|
---|
35 | # We specify our problem here
|
---|
36 | #
|
---|
37 |
|
---|
38 | eval.problem = ec.app.ant.Ant
|
---|
39 | eval.problem.data = ec.app.ant.AntData
|
---|
40 |
|
---|
41 | # Here we determine what kind of Ant we're doing:
|
---|
42 |
|
---|
43 | # no progn4, 400 moves, Santa Fe trail
|
---|
44 | gp.fs.0.size = 6
|
---|
45 | eval.problem.moves = 400
|
---|
46 | eval.problem.file = santafe.trl
|
---|
Note: See
TracBrowser
for help on using the repository browser.