Uses of Class
jenes.chromosome.IntegerChromosome

Packages that use IntegerChromosome
jenes.chromosome   
jenes.performance   
jenes.tutorials.problem2   
jenes.tutorials.problem3   
 

Uses of IntegerChromosome in jenes.chromosome
 

Methods in jenes.chromosome that return IntegerChromosome
 IntegerChromosome IntegerChromosome.clone()
           
 

Methods in jenes.chromosome with parameters of type IntegerChromosome
 void IntegerChromosome.cross(IntegerChromosome chromosome, int from)
           
 void IntegerChromosome.cross(IntegerChromosome chromosome, int from, int to)
           
 boolean IntegerChromosome.equals(IntegerChromosome chromosome)
          Compares the chromosome with another.
 void IntegerChromosome.setAs(IntegerChromosome chromosome)
           
 

Constructors in jenes.chromosome with parameters of type IntegerChromosome
IntegerChromosome(IntegerChromosome chromosome)
          Creates a new IntegerIndividual with the specified chromosome
 

Uses of IntegerChromosome in jenes.performance
 

Method parameters in jenes.performance with type arguments of type IntegerChromosome
 void TSPGA.evaluateIndividual(Individual<IntegerChromosome> individual)
           
protected  void TSPMutator.mutate(Individual<IntegerChromosome> t)
           
protected  void TSPGA.randomizeIndividual(Individual<IntegerChromosome> individual)
           
 

Constructor parameters in jenes.performance with type arguments of type IntegerChromosome
TSPGA(double[][] matrix, Population<IntegerChromosome> pop, int genlimit)
           
 

Uses of IntegerChromosome in jenes.tutorials.problem2
 

Method parameters in jenes.tutorials.problem2 with type arguments of type IntegerChromosome
 void PatternGA.evaluateIndividual(Individual<IntegerChromosome> individual)
           
 

Constructor parameters in jenes.tutorials.problem2 with type arguments of type IntegerChromosome
PatternGA(Population<IntegerChromosome> pop, int numGen)
           
 

Uses of IntegerChromosome in jenes.tutorials.problem3
 

Methods in jenes.tutorials.problem3 with parameters of type IntegerChromosome
 void TSPScrambleMutator.randomize(IntegerChromosome chrom, int min, int max)
          Randomizes the elements chromosome within the range [min,max]
 

Method parameters in jenes.tutorials.problem3 with type arguments of type IntegerChromosome
 void TSPGA.evaluateIndividual(Individual<IntegerChromosome> individual)
           
protected  void TSPScrambleMutator.mutate(Individual<IntegerChromosome> t)
           
protected  void TSPGA.randomizeIndividual(Individual<IntegerChromosome> individual)
           
 

Constructor parameters in jenes.tutorials.problem3 with type arguments of type IntegerChromosome
TSPGA(double[][] matrix, Population<IntegerChromosome> pop, int genlimit)