PGASetUp - set all uninitialized variables to default values and
initialize some internal arrays.
Must be called after PGACreate() and before the GA is started.
ctx - context variable
none
#include "pgapack.h"
void PGASetUp(ctx)
PGAContext *ctx
create.c
Example:
PGAContext *ctx;
:
PGACreate(ctx, ...);
:
// Set options here
:
PGASetUp(ctx);
05/01/95 PGASetUp(8)