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 org.jgap.*; 13 import java.io.*; 14 15 /** 16 * Interface specifying how to initialize a Genotype on behalf of the worker. 17 * 18 * @author Klaus Meffert 19 * @since 3.2 20 */ 21 public interface IGenotypeInitializer 22 extends Serializable { 23 /** String containing the CVS revision. Read out via reflection!*/ 24 final static String CVS_REVISION = "$Revision: 1.3 $"; 25 26 Genotype setupGenotype(JGAPRequest a_req, Population a_initialPop) 27 throws Exception; 28 } 29