Returns the type of scheme used to randomly initialize strings of data type pga_datatype_integer.
ctx
- context variable
none
#include "pgapack.h" int PGAGetIntegerInitType(ctx) PGAContext *ctx
integer.c
Example:
PGAContext *ctx;
int inittype;
:
inittype = PGAGetIntegerInitType(ctx);
switch (inittype) {
case PGA_IINIT_PERMUTE:
printf("Data Type = PGA_IINIT_PERMUTE\n");
break;
case PGA_IINIT_RANGE:
printf("Data Type = PGA_IINIT_RANGE\n");
break;
}