Returns the type of selection selected
ctx
- context variable
none
#include "pgapack.h" int PGAGetSelectType(ctx) PGAContext *ctx
select.c
Example:
PGAContext *ctx;
int selecttype;
:
selecttype = PGAGetSelectType(ctx);
switch (selecttype) {
case PGA_SELECT_PROPORTIONAL:
printf("Selection Type = PGA_SELECT_PROPORTIONAL\n");
break;
case PGA_SELECT_SUS:
printf("Selection Type = PGA_SELECT_SUS\n");
break;
case PGA_SELECT_TOURNAMENT:
printf("Selection Type = PGA_SELECT_TOURNAMENT\n");
break;
case PGA_SELECT_PTOURNAMENT:
printf("Selection Type = PGA_SELECT_PTOURNAMENT\n");
break;
}