Uses of Interface
org.apache.commons.math3.genetics.SelectionPolicy
Packages that use SelectionPolicy
Package
Description
This package provides Genetic Algorithms components and implementations.
-
Uses of SelectionPolicy in org.apache.commons.math3.genetics
Classes in org.apache.commons.math3.genetics that implement SelectionPolicyFields in org.apache.commons.math3.genetics declared as SelectionPolicyModifier and TypeFieldDescriptionprivate final SelectionPolicy
GeneticAlgorithm.selectionPolicy
the selection policy used by the algorithm.Methods in org.apache.commons.math3.genetics that return SelectionPolicyModifier and TypeMethodDescriptionGeneticAlgorithm.getSelectionPolicy()
Returns the selection policy.Constructors in org.apache.commons.math3.genetics with parameters of type SelectionPolicyModifierConstructorDescriptionGeneticAlgorithm
(CrossoverPolicy crossoverPolicy, double crossoverRate, MutationPolicy mutationPolicy, double mutationRate, SelectionPolicy selectionPolicy) Create a new genetic algorithm.