.TH PGASetIntegerAllele 1 "05/01/95" " " "PGAPack" .SH NAME PGASetIntegerAllele \- sets the value of a (integer) allele. .SH INPUT PARAMETERS .PD 0 .TP ctx - context variable .PD 0 .TP p - string index .PD 0 .TP pop - symbolic constant of the population the string is in .PD 0 .TP i - allele index .PD 0 .TP val - integer value to set the allele to .PD 1 .SH OUTPUT PARAMETERS .PD 0 .TP none .PD 1 .SH SYNOPSIS .nf #include "pgapack.h" void PGASetIntegerAllele(ctx, p, pop, i, value) PGAContext *ctx int p int pop int i int value .fi .SH LOCATION integer.c .SH EXAMPLE .nf Set the value of the ith allele of string p in population PGA_NEWPOP to 64. PGAContext *ctx; int p, i; : PGASetIntegerAllele (ctx, p, PGA_NEWPOP, i, 64) .fi