PGASetSelectType
specify the type of selection to use.
- Provided by: pgapack (Version: 1.1.1-3)
- Report a bug
specify the type of selection to use.
Valid choices are PGA_SELECT_PROPORTIONAL, PGA_SELECT_SUS, PGA_SELECT_TOURNAMENT, and PGA_SELECT_PTOURNAMENT for proportional, stochastic universal selection, tournament, and probabilistic tournament selection, respectively. The default is PGA_SELECT_TOURNAMENT.
#include "pgapack.h" void PGASetSelectType(ctx, select_type) PGAContext *ctx int select_type
select.c
Example: PGAContext *ctx; : PGASetSelectType(ctx, PGA_SELECT_SUS);