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.gp; 11 12 import org.jgap.*; 13 14 /** 15 * Interface for genetic operators suitable for GP. 16 * 17 * @author Klaus Meffert 18 * @since 3.0 19 */ 20 public interface IGPGeneticOperator 21 extends GeneticOperator { 22 /** String containing the CVS revision. Read out via reflection!*/ 23 static final String CVS_REVISION = "$Revision: 1.1 $"; 24 } 25