01: /*
02: * This file is part of JGAP.
03: *
04: * JGAP offers a dual license model containing the LGPL as well as the MPL.
05: *
06: * For licensing information please see the file license.txt included with JGAP
07: * or have a look at the top of class org.jgap.Chromosome which representatively
08: * includes the JGAP license policy applicable for any file delivered with JGAP.
09: */
10: package org.jgap.impl.job;
11:
12: import org.jgap.*;
13:
14: /**
15: * Result of an evolution.
16: *
17: * @author Klaus Meffert
18: * @since 3.2
19: */
20: public class EvolveResult extends JobResult {
21: /** String containing the CVS revision. Read out via reflection!*/
22: private final static String CVS_REVISION = "$Revision: 1.3 $";
23:
24: private Population m_pop;
25:
26: public EvolveResult() {
27: }
28:
29: public Population getPopulation() {
30: return m_pop;
31: }
32:
33: public void setPopulation(Population a_pop) {
34: m_pop = a_pop;
35: }
36: }
|