Uses of Class
net.sf.amiba.evolve.gene.Individual

Packages that use Individual
net.sf.amiba.evolve   
net.sf.amiba.evolve.gene   
net.sf.amiba.evolve.population   
 

Uses of Individual in net.sf.amiba.evolve
 

Methods in net.sf.amiba.evolve that return Individual
 Individual<T> EvolutionResult.getBestIndividual()
           
 

Constructors in net.sf.amiba.evolve with parameters of type Individual
EvolutionResult(double averageFitness, Individual<T> bestIndividual)
           
 

Uses of Individual in net.sf.amiba.evolve.gene
 

Methods in net.sf.amiba.evolve.gene that return Individual
 Individual<T> Individual.clone()
          get a deep copy of this individual
 Individual<T> IndividualFactory.produce()
           
 

Methods in net.sf.amiba.evolve.gene that return types with arguments of type Individual
 List<Individual<T>> IndividualFactory.produce(int number)
           
 

Methods in net.sf.amiba.evolve.gene with parameters of type Individual
 int Individual.compareTo(Individual<T> another)
           
 

Uses of Individual in net.sf.amiba.evolve.population
 

Methods in net.sf.amiba.evolve.population that return types with arguments of type Individual
 List<Individual<T>> DefaultPopulation.getIndividuals()
           
 List<Individual<T>> Population.getIndividuals()
          required to change and manipulate the population
 List<Individual<T>> RouletteWheelSelector.select(List<Individual<T>> individuals)
          implements roulette wheel selection in a simplistic manner
abstract  List<Individual<T>> Selector.select(List<Individual<T>> individuals)
          select the individuals for the next generation
 

Method parameters in net.sf.amiba.evolve.population with type arguments of type Individual
 List<Individual<T>> RouletteWheelSelector.select(List<Individual<T>> individuals)
          implements roulette wheel selection in a simplistic manner
abstract  List<Individual<T>> Selector.select(List<Individual<T>> individuals)
          select the individuals for the next generation