Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/tutorial4/DoubleData.java @ 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: 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
8package ec.app.tutorial4;
9import ec.gp.*;
10
11public 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.