1 10 package org.jgap; 11 12 import java.io.*; 13 14 26 public interface INaturalSelector 27 extends Serializable { 28 29 final static String CVS_REVISION = "$Revision: 1.11 $"; 30 31 49 void select(int a_howManyToSelect, Population a_from_population, 50 Population a_to_population); 51 52 60 void empty(); 61 62 70 boolean returnsUniqueChromosomes(); 71 } 72 | Popular Tags |