Uses of Class
jenes.algorithms.SimpleGA.SelectionMethod

Packages that use SimpleGA.SelectionMethod
jenes.algorithms   
 

Uses of SimpleGA.SelectionMethod in jenes.algorithms
 

Fields in jenes.algorithms declared as SimpleGA.SelectionMethod
static SimpleGA.SelectionMethod SimpleGA.DEFAULT_SELECTION_METHOD
          The default selection method
 

Methods in jenes.algorithms that return SimpleGA.SelectionMethod
static SimpleGA.SelectionMethod SimpleGA.SelectionMethod.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SimpleGA.SelectionMethod[] SimpleGA.SelectionMethod.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in jenes.algorithms with parameters of type SimpleGA.SelectionMethod
SimpleGA(Population<T> population, int generations, double crossover, double mutation, int elitism, SimpleGA.SelectionMethod selmethod, SimpleGA.CrossoverMethod crossmethod)
          Builds a new SimpleGa with the default elitism strategy.
SimpleGA(Population<T> population, int generations, double crossover, double mutation, int elitism, SimpleGA.SelectionMethod selmethod, SimpleGA.CrossoverMethod crossmethod, GeneticAlgorithm.ElitismStrategy es)
          Builds a new SimpleGa.