Last change
on this file since 10677 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
545 bytes
|
Line | |
---|
1 | /*
|
---|
2 | Copyright 2006 by Sean Luke
|
---|
3 | Licensed under the Academic Free License version 3.0
|
---|
4 | See the file "LICENSE" for more information
|
---|
5 | */
|
---|
6 |
|
---|
7 |
|
---|
8 | package ec.app.parity;
|
---|
9 | import ec.gp.*;
|
---|
10 |
|
---|
11 | /*
|
---|
12 | * ParityData.java
|
---|
13 | *
|
---|
14 | * Created: Wed Nov 3 18:32:13 1999
|
---|
15 | * By: Sean Luke
|
---|
16 | */
|
---|
17 |
|
---|
18 | /**
|
---|
19 | * @author Sean Luke
|
---|
20 | * @version 1.0
|
---|
21 | */
|
---|
22 |
|
---|
23 | public class ParityData extends GPData
|
---|
24 | {
|
---|
25 | // return value -- should ALWAYS be either 1 or 0
|
---|
26 | public int x;
|
---|
27 |
|
---|
28 | public void copyTo(final GPData gpd)
|
---|
29 | { ((ParityData)gpd).x = x; }
|
---|
30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.