Last change
on this file since 7611 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
640 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 | A simple class which contains both an Individual and the Queue it's located in. |
---|
9 | Used by SteadyState and by various assistant functions in the distributed evaluator |
---|
10 | to provide individuals to SteadyState |
---|
11 | */ |
---|
12 | |
---|
13 | package ec.steadystate; |
---|
14 | import ec.*; |
---|
15 | |
---|
16 | public class QueueIndividual implements java.io.Serializable |
---|
17 | { |
---|
18 | public Individual ind; |
---|
19 | public int subpop; |
---|
20 | public QueueIndividual(Individual i, int s) |
---|
21 | { |
---|
22 | ind = i; |
---|
23 | subpop=s; |
---|
24 | } |
---|
25 | }; |
---|
26 | |
---|
Note: See
TracBrowser
for help on using the repository browser.