Uses of Class
jenes.chromosome.BitwiseChromosome

Packages that use BitwiseChromosome
jenes.chromosome   
jenes.performance   
 

Uses of BitwiseChromosome in jenes.chromosome
 

Methods in jenes.chromosome that return BitwiseChromosome
 BitwiseChromosome BitwiseChromosome.clone()
          Makes a chromosome copy
 

Methods in jenes.chromosome with parameters of type BitwiseChromosome
 void BitwiseChromosome.cross(BitwiseChromosome chromosome, int from)
          Exchanges the chromosome bits from the specified cross site to the final position
 void BitwiseChromosome.cross(BitwiseChromosome chromosome, int from, int to)
          Exchanges the chromosome bits in the range [from,to].
 boolean BitwiseChromosome.equals(BitwiseChromosome chromosome)
          Compares the chromosome with another.
 void BitwiseChromosome.setAs(BitwiseChromosome chromosome)
          Sets this chromosome as a copy of another.
 

Constructors in jenes.chromosome with parameters of type BitwiseChromosome
BitwiseChromosome(BitwiseChromosome chromosome)
          Creates a new BitwiseChromosome using the specified one as prototype
 

Uses of BitwiseChromosome in jenes.performance
 

Fields in jenes.performance with type parameters of type BitwiseChromosome
protected  GeneticAlgorithm<BitwiseChromosome> DeJongTest.ga
           
protected  GeneticAlgorithm<BitwiseChromosome> RoyalTest.ga
           
 

Method parameters in jenes.performance with type arguments of type BitwiseChromosome
protected  void RoyalGA.evaluateIndividual(Individual<BitwiseChromosome> individual)
           
 

Constructor parameters in jenes.performance with type arguments of type BitwiseChromosome
RoyalGA(Population<BitwiseChromosome> pop, int gen, int sectionSize, int blockSize, int numBlocks)