Last change
on this file since 10216 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
414 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.tutorial4;
|
---|
9 | import ec.gp.*;
|
---|
10 |
|
---|
11 | public class DoubleData extends GPData
|
---|
12 | {
|
---|
13 | public double x; // return value
|
---|
14 |
|
---|
15 | public void copyTo(final GPData gpd) // copy my stuff to another DoubleData
|
---|
16 | { ((DoubleData)gpd).x = x; }
|
---|
17 | }
|
---|
18 |
|
---|
19 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.