Uses of Class
anthill.genie.GeneticCode

Packages that use GeneticCode
anthill.genie This package contains the main interfaces used in the Anthill evolution framework, including interfaces to perform evaluations using genetic tools, to represent genetic codes and to manipulate populations of genetic codes. 
anthill.genie.impl This package contains a prototype implementation of the interfaces included in package anthill.genie
anthill.nestor This package is a prototype implementation of package anthill.nest to be used during Anthill simulations.  
 

Uses of GeneticCode in anthill.genie
 

Methods in anthill.genie that return GeneticCode
 GeneticCode GeneticFramework.getFittest()
          Return the genetic code with the best fitness.
 GeneticCode GeneticAnt.getGeneticCode()
          Return the genetic code of this ant.
 

Methods in anthill.genie with parameters of type GeneticCode
 Ant[] GeneticAntFactory.getAnts(GeneticCode code, java.lang.Object request)
          Factory method for creating ants.
 void GeneticScenario.addGeneticCode(GeneticCode code)
          Set the genetic code(s) to be evaluated.
 void GeneticExperiment.addGeneticCode(GeneticCode code)
          Set the genetic code to be evaluated.
 void GeneticNest.addGeneticCode(GeneticCode code)
          Add a new genetic code to the set of genetic codes known to this nest.
 

Constructors in anthill.genie with parameters of type GeneticCode
GeneticCode(GeneticCode code)
          Construct a new GeneticCode object starting from another GeneticCode object.
 

Uses of GeneticCode in anthill.genie.impl
 

Fields in anthill.genie.impl declared as GeneticCode
protected  GeneticCode GeneticFrameworkImpl.bestCode
          Fittest genetic code
 

Methods in anthill.genie.impl that return GeneticCode
 GeneticCode GeneticFrameworkImpl.getFittest()
          Return the genetic code with the best fitness.
 

Methods in anthill.genie.impl with parameters of type GeneticCode
 void GeneticScenarioImpl.addGeneticCode(GeneticCode code)
          Set the genetic code to be evaluated.
 void GeneticExperimentImpl.addGeneticCode(GeneticCode code)
          Set the genetic code to be evaluated.
 

Uses of GeneticCode in anthill.nestor
 

Methods in anthill.nestor with parameters of type GeneticCode
 void LocalGeneticNest.addGeneticCode(GeneticCode code)
          Add a new genetic code to the set of genetic codes known to this anthill.