Uses of Interface
science.aist.machinelearning.algorithm.ga.Selector
-
Packages that use Selector Package Description science.aist.machinelearning.algorithm.ga science.aist.machinelearning.algorithm.ga.crossover science.aist.machinelearning.algorithm.ga.selector -
-
Uses of Selector in science.aist.machinelearning.algorithm.ga
Methods in science.aist.machinelearning.algorithm.ga that return Selector Modifier and Type Method Description Selector<GT,PT>
GeneticAlgorithm. getSelector()
Methods in science.aist.machinelearning.algorithm.ga with parameters of type Selector Modifier and Type Method Description science.aist.machinelearning.core.Solution<ST,PT>
Crossover. breed(List<science.aist.machinelearning.core.Solution<ST,PT>> population, Selector<ST,PT> selector)
void
GeneticAlgorithm. setSelector(Selector<GT,PT> selector)
Setter for dependency injection -
Uses of Selector in science.aist.machinelearning.algorithm.ga.crossover
Methods in science.aist.machinelearning.algorithm.ga.crossover with parameters of type Selector Modifier and Type Method Description science.aist.machinelearning.core.Solution<ST,PT>
AbstractCrossover. breed(List<science.aist.machinelearning.core.Solution<ST,PT>> population, Selector<ST,PT> selector)
-
Uses of Selector in science.aist.machinelearning.algorithm.ga.selector
Classes in science.aist.machinelearning.algorithm.ga.selector that implement Selector Modifier and Type Class Description class
TournamentSelector<GT,PT>
The tournament selector "holds a tournament" by randomly selecting solutions from the population.
-