Function PGASetRealAllele
Defined in File real.c
Function Documentation
-
void PGASetRealAllele(PGAContext *ctx, int p, int pop, int i, double val)
Set the value of real-valued allele i in string p in population pop.
Example
Sets the value of allele
i
of stringp
in populationPGA_NEWPOP
to 1.57PGAContext *ctx; int i, p; ... PGASetRealAllele (ctx, p, PGA_NEWPOP, i, 1.57);
- Parameters:
ctx – context variable
p – string index
pop – symbolic constant of the population the string is in
i – allele index
val – real value to set the allele to
- Returns:
The specified allele in p is modified by side-effect.