Exemplo n.º 1
0
 /**
  * @param aChromosome
  * @return boolean true iff compatibility difference between
  * <code>aChromosome</code? and representative
  * is less than speciation threshold
  */
 public boolean match(Chromosome aChromosome) {
   return (representative.distance(aChromosome, speciationParms)
       < speciationParms.getSpeciationThreshold());
 }