.TH PGASetFitnessCmaxValue 1 "05/01/95" " " "PGAPack" .SH NAME PGASetFitnessCmaxValue \- The value of the multiplier used by PGAFitnessMinCmax so that the worst string has a nonzero fitness. .SH DESCRIPTION The default value is 1.01. .SH INPUT PARAMETERS .PD 0 .TP ctx - context variable .PD 0 .TP val - the value of the multiplier .PD 1 .SH OUTPUT PARAMETERS .PD 0 .TP none .PD 1 .SH SYNOPSIS .nf #include "pgapack.h" void PGASetFitnessCmaxValue(ctx, val) PGAContext *ctx double val .fi .SH LOCATION fitness.c .SH EXAMPLE .nf Example: PGAContext *ctx; : PGASetFitnessCmaxValue(ctx, 1.2); .fi