Click or drag to resize
Accord.NET (logo)

ISelectionMethod Interface

Genetic selection method interface.

Namespace:  Accord.Genetic
Assembly:  Accord.Genetic (in Accord.Genetic.dll) Version: 3.8.0
Syntax
public interface ISelectionMethod
Request Example View Source

The ISelectionMethod type exposes the following members.

Methods
  NameDescription
Public methodApplySelection
Apply selection to the specified population.
Top
Remarks
The interface should be implemented by all classes, which implement genetic selection algorithm. These algorithms select members of current generation, which should be kept in the new generation. Basically, these algorithms filter provided population keeping only specified amount of members.
See Also