Uses of Interface
org.biojavax.ga.functions.SelectionFunction
-
Packages that use SelectionFunction Package Description org.biojavax.ga Classes to provide a genetic algorithm frameworkorg.biojavax.ga.functions GA functionsorg.biojavax.ga.impl Default implementations and abstract classes. -
-
Uses of SelectionFunction in org.biojavax.ga
Methods in org.biojavax.ga that return SelectionFunction Modifier and Type Method Description SelectionFunctionGeneticAlgorithm. getSelectionFunction()Methods in org.biojavax.ga with parameters of type SelectionFunction Modifier and Type Method Description voidGeneticAlgorithm. setSelectionFunction(SelectionFunction function)Changes theSelectionFunctionused to select candidates for the next generation -
Uses of SelectionFunction in org.biojavax.ga.functions
Classes in org.biojavax.ga.functions that implement SelectionFunction Modifier and Type Class Description classProportionalSelectionA Selection function that determines the proportion of individuals in a new population proportionally to their fitness.static classSelectionFunction.SelectAllstatic classSelectionFunction.ThresholdSelects individuals who's fitness exceeds a threshold value.classTournamentSelectionTournament Selection chooses the best organisms from n random subsets of a given population.Fields in org.biojavax.ga.functions declared as SelectionFunction Modifier and Type Field Description static SelectionFunctionSelectionFunction. DEFAULTSelects all members of a population for replication -
Uses of SelectionFunction in org.biojavax.ga.impl
Methods in org.biojavax.ga.impl that return SelectionFunction Modifier and Type Method Description SelectionFunctionAbstractGeneticAlgorithm. getSelectionFunction()Methods in org.biojavax.ga.impl with parameters of type SelectionFunction Modifier and Type Method Description voidAbstractGeneticAlgorithm. setSelectionFunction(SelectionFunction function)Constructors in org.biojavax.ga.impl with parameters of type SelectionFunction Constructor Description SimpleGeneticAlgorithm(Population pop, MutationFunction mutFunc, CrossOverFunction xFunc, SelectionFunction selFunc)
-