.TH PGASetPopSize 8 "05/01/95" " " "PGAPack" .SH NAME PGASetPopSize \- Specifies the size of the genetic algorithm population. .SH DESCRIPTION The default population size is 100. .SH INPUT PARAMETERS .PD 0 .TP ctx - context variable .PD 0 .TP popsize - the genetic algorithm population size to use .PD 1 .SH OUTPUT PARAMETERS .PD 0 .TP none .PD 1 .SH SYNOPSIS .nf #include "pgapack.h" void PGASetPopSize(ctx, popsize) PGAContext *ctx int popsize .fi .SH LOCATION pop.c .SH EXAMPLE .nf Example: PGAContext *ctx; : PGASetPopSize(ctx, 200); .fi