.TH PGASetUp 8 "05/01/95" " " "PGAPack" .SH NAME PGASetUp \- set all uninitialized variables to default values and initialize some internal arrays. .SH DESCRIPTION Must be called after PGACreate() and before the GA is started. .SH INPUT PARAMETERS .PD 0 .TP ctx - context variable .PD 1 .SH OUTPUT PARAMETERS .PD 0 .TP none .PD 1 .SH SYNOPSIS .nf #include "pgapack.h" void PGASetUp(ctx) PGAContext *ctx .fi .SH LOCATION create.c .SH EXAMPLE .nf Example: PGAContext *ctx; : PGACreate(ctx, ...); : // Set options here : PGASetUp(ctx); .fi