Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/edge/1.params @ 12147

Last change on this file since 12147 was 6152, checked in by bfarka, 14 years ago

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

File size: 1.8 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
5parent.0 = ../../gp/koza/koza.params
6
7
8# Stolen from koza/params -- overwriting just
9# a little for readability
10# You need to create at least one function set,
11# called "f0", which your first tree will use. 
12
13gp.fs.size = 1
14gp.fs.0.name = f0
15gp.fs.0.size = 10
16gp.fs.0.func.0 = ec.app.edge.func.Double
17gp.fs.0.func.0.nc = nc2
18gp.fs.0.func.1 = ec.app.edge.func.Bud
19gp.fs.0.func.1.nc = nc2
20gp.fs.0.func.2 = ec.app.edge.func.Split
21gp.fs.0.func.2.nc = nc2
22gp.fs.0.func.3 = ec.app.edge.func.Loop
23gp.fs.0.func.3.nc = nc2
24gp.fs.0.func.4 = ec.app.edge.func.Reverse
25gp.fs.0.func.4.nc = nc1
26gp.fs.0.func.5 = ec.app.edge.func.Accept
27gp.fs.0.func.5.nc = nc1
28gp.fs.0.func.6 = ec.app.edge.func.Start
29gp.fs.0.func.6.nc = nc1
30gp.fs.0.func.7 = ec.app.edge.func.Zero
31gp.fs.0.func.7.nc = nc0
32gp.fs.0.func.8 = ec.app.edge.func.One
33gp.fs.0.func.8.nc = nc0
34gp.fs.0.func.9 = ec.app.edge.func.Epsilon
35gp.fs.0.func.9.nc = nc0
36
37#
38# Uncomment this to use the additional operations
39#
40
41gp.fs.0.size = 14
42gp.fs.0.func.10 = ec.app.edge.func.BBud
43gp.fs.0.func.10.nc = nc2
44gp.fs.0.func.11= ec.app.edge.func.BLoop
45gp.fs.0.func.11.nc = nc2
46gp.fs.0.func.12 = ec.app.edge.func.BStart
47gp.fs.0.func.12.nc = nc1
48gp.fs.0.func.13 = ec.app.edge.func.BAccept
49gp.fs.0.func.13.nc = nc1
50
51#
52# We specify our problem here
53#
54
55eval.problem = ec.app.edge.Edge
56eval.problem.data = ec.app.edge.EdgeData
57
58#
59# Here we specify the particular files to do induction over
60#
61
62eval.problem.allpos = input/1.out.gz
63eval.problem.allneg = input/1a.out.gz
64eval.problem.testpos = input/1s.out.gz
65eval.problem.testneg = input/1sa.out.gz
66
67#
68# Uncomment this to test generalization (much slower)
69#
70
71eval.problem.generalize = true
Note: See TracBrowser for help on using the repository browser.