Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/multiplexer/11.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.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
15
16### The functions, carefully ordered :-)  (See below)
17
18gp.fs.0.func.0 = ec.app.multiplexer.func.And
19gp.fs.0.func.0.nc = nc2
20gp.fs.0.func.1 = ec.app.multiplexer.func.Or
21gp.fs.0.func.1.nc = nc2
22gp.fs.0.func.2 = ec.app.multiplexer.func.Not
23gp.fs.0.func.2.nc = nc1
24gp.fs.0.func.3 = ec.app.multiplexer.func.A0
25gp.fs.0.func.3.nc = nc0
26gp.fs.0.func.4 = ec.app.multiplexer.func.D0
27gp.fs.0.func.4.nc = nc0
28gp.fs.0.func.5 = ec.app.multiplexer.func.D1
29gp.fs.0.func.5.nc = nc0
30gp.fs.0.func.6 = ec.app.multiplexer.func.If
31gp.fs.0.func.6.nc = nc3
32gp.fs.0.func.7 = ec.app.multiplexer.func.A1
33gp.fs.0.func.7.nc = nc0
34gp.fs.0.func.8 = ec.app.multiplexer.func.D2
35gp.fs.0.func.8.nc = nc0
36gp.fs.0.func.9 = ec.app.multiplexer.func.D3
37gp.fs.0.func.9.nc = nc0
38gp.fs.0.func.10 = ec.app.multiplexer.func.A2
39gp.fs.0.func.10.nc = nc0
40gp.fs.0.func.11 = ec.app.multiplexer.func.D4
41gp.fs.0.func.11.nc = nc0
42gp.fs.0.func.12 = ec.app.multiplexer.func.D5
43gp.fs.0.func.12.nc = nc0
44gp.fs.0.func.13 = ec.app.multiplexer.func.D6
45gp.fs.0.func.13.nc = nc0
46gp.fs.0.func.14 = ec.app.multiplexer.func.D7
47gp.fs.0.func.14.nc = nc0
48
49
50#
51# We specify our problem here
52#
53
54eval.problem = ec.app.multiplexer.Multiplexer
55eval.problem.data = ec.app.multiplexer.MultiplexerData
56
57
58# Here we determine what kind of Multiplexer we're doing:
59
60# 11-Multiplexer with IF
61eval.problem.bits = 3
62gp.fs.0.size = 15
63
64
Note: See TracBrowser for help on using the repository browser.