Uses of Class
DistributedEvolutionaryAlgorithmsFramework.Individual

Uses of Individual in DistributedEvolutionaryAlgorithmsFramework
 

Fields in DistributedEvolutionaryAlgorithmsFramework declared as Individual
protected  Individual Algorithm.bestIndividual
          Inidivual with the best fitness, returned by generation()
 

Methods in DistributedEvolutionaryAlgorithmsFramework that return Individual
abstract  Individual Algorithm.generation()
          Runs one generation/cycle of algorithm
 Individual Population.get(int j)
           
 Individual Population.getBestIndividual()
           
 Individual Deaf.run(int rounds)
          Runs the hadoop framework with defined settings.
 Individual Framework.run(int rounds)
          Runs the hadoop framework with defined settings.
 

Methods in DistributedEvolutionaryAlgorithmsFramework that return types with arguments of type Individual
 java.util.ArrayList<Individual> Population.getPopulation()
           
 java.util.Iterator<Individual> Population.iterator()
           
 

Methods in DistributedEvolutionaryAlgorithmsFramework with parameters of type Individual
 void Population.add(Individual ind)
          Ads one Individual to population
 int Individual.compareTo(Individual o)
           
 double Population.evaluateIndividual(Individual i)
           
 void Population.set(int j, Individual ind)
          Sets one Individual with index j, rewriting the old one
 

Method parameters in DistributedEvolutionaryAlgorithmsFramework with type arguments of type Individual
static int Population.getBestIndex(java.util.ArrayList<Individual> list)
          Get population index of the best Individual from ArrayList of Individuals.)
 void Population.setPopulation(java.util.ArrayList<Individual> individuals)
          Makes new Population from Individuals given in the individuals parameter
 

Constructor parameters in DistributedEvolutionaryAlgorithmsFramework with type arguments of type Individual
Population(java.util.ArrayList<Individual> population)
          Constructs Population with given Individuals