PGASelect
performs genetic algorithm selection using either the default selection scheme or that specified with PGASetSelectType().
- Provided by: pgapack (Version: 1.1.1-3)
- Report a bug
performs genetic algorithm selection using either the default selection scheme or that specified with PGASetSelectType().
Valid selection methods are proportional, stochastic universal, tournament, or probabilistic tournament selection, PGA_SELECT_PROPORTIONAL, PGA_SELECT_SUS, PGA_SELECT_TOURNAMENT, and PGA_SELECT_PTOURNAMENT, respectively. This function updates an internal array with the indices of members of popix selected for recombination. These indices may be accessed with PGASelectNextIndex()
#include "pgapack.h" void PGASelect(ctx, popix) PGAContext *ctx int popix
select.c
Example: PGAContext *ctx, : PGASelect(ctx, PGA_OLDPOP);