A boolean flag to indicate if duplicate strings are allowed in the population.
Valid choices are PGA_TRUE and PGA_FALSE. The default is PGA_FALSE -- allow duplicates.
ctx
- context variable
flag
- PGA_TRUE or PGA_FALSE
none
#include "pgapack.h" void PGASetNoDuplicatesFlag(ctx, no_dup) PGAContext *ctx int no_dup
duplcate.c
Example: Set the NoDuplicates flag to require that all strings are unique. PGAContext *ctx; : PGASetNoDuplicatesFlag(ctx,PGA_TRUE);