1 /* 2 * This file is part of JGAP. 3 * 4 * JGAP offers a dual license model containing the LGPL as well as the MPL. 5 * 6 * For licencing information please see the file license.txt included with JGAP 7 * or have a look at the top of class org.jgap.Chromosome which representatively 8 * includes the JGAP license policy applicable for any file delivered with JGAP. 9 */ 10 package org.jgap.distr.grid; 11 12 import java.io.*; 13 import org.jgap.*; 14 15 /** 16 * Interface for defining a strategy that controls how a worker evolves a single 17 * request. 18 * 19 * @author Klaus Meffert 20 * @since 3.2 21 */ 22 public interface IEvolveStrategy 23 extends Serializable { 24 /** String containing the CVS revision. Read out via reflection!*/ 25 final static String CVS_REVISION = "$Revision: 1.3 $"; 26 27 void evolve(Genotype a_genotype); 28 } 29