GeneticSharp.Domain.Selections Namespace | GeneticSharp |
[Missing <summary> documentation for "N:GeneticSharp.Domain.Selections"]
Classes
Class | Description | |
---|---|---|
EliteSelection |
Selects the chromosomes with the best fitness.
|
|
RouletteWheelSelection |
Roulette Wheel Selection
Remarks |
|
SelectionBase |
A base class for selection.
|
|
SelectionException |
Exception throw when an error occurs during the execution of selection.
|
|
SelectionService |
Selection service.
|
|
StochasticUniversalSamplingSelection |
Stochastic Universal Sampling.
Remarks |
|
TournamentSelection |
Tournament selection involves running several "tournaments" among a few individuals chosen at random from the population.
The winner of each tournament (the one with the best fitness) is selected for crossover.
Remarks |
Interfaces
Interface | Description | |
---|---|---|
ISelection |
Defines a interface for selection.
Selection is the stage of a genetic algorithm in which individual genomes are chosen from a population for later breeding (recombination or crossover).
WikipediaA Review of Selection Methods in Genetic Algorithm
|