1 10 package org.jgap.distr.grid; 11 12 import org.jgap.*; 13 import org.jgap.util.*; 14 15 21 public class DefaultEvolveStrategy 22 implements IWorkerEvolveStrategy, ICloneable { 23 24 private final static String CVS_REVISION = "$Revision: 1.5 $"; 25 26 public void evolve(Genotype a_genotype) { 27 a_genotype.evolve(); 28 } 29 30 36 public Object clone() { 37 return new DefaultEvolveStrategy(); 38 } 39 } 40 | Popular Tags |