Uses of Class
org.jgap.Genotype

Packages that use Genotype
com.anji.integration com.anji.integration contains classes that provide the glue between the various components of the system, including artificial neural net implementations, JGAP, NEAT, Log4J, and persistence and presentation layers. 
com.anji.persistence com.anji.persistence contains classes implementing a simple persistence interface. 
com.anji.run com.anji.run contains classes concerned with an evolutionary run. 
org.jgap   
 

Uses of Genotype in com.anji.integration
 

Constructors in com.anji.integration with parameters of type Genotype
Generation(Genotype aGenotype, long anId)
           
 

Uses of Genotype in com.anji.persistence
 

Methods in com.anji.persistence that return Genotype
 Genotype Persistence.loadGenotype(Configuration config)
          loads genotype as of latest generation in run
 Genotype HibernatePersistence.loadGenotype(Configuration aConfig)
           
 Genotype FilePersistence.loadGenotype(Configuration config)
           
 

Uses of Genotype in com.anji.run
 

Methods in com.anji.run with parameters of type Genotype
 void Run.addGeneration(Genotype genotype)
          Add new generation to run.
 

Uses of Genotype in org.jgap
 

Methods in org.jgap that return Genotype
static Genotype Genotype.randomInitialGenotype(Configuration a_activeConfiguration)
          Convenience method that returns a newly constructed Genotype instance configured according to the given Configuration instance.