.TH PGAPrintReport 7 "05/01/95" " " "PGAPack" .SH NAME PGAPrintReport \- prints genetic algorithm statistics. .SH DESCRIPTION The statistics that are printed are determined by PGASetPrintOptions(). .SH INPUT PARAMETERS .PD 0 .TP ctx - context variable .PD 0 .TP fp - file pointer to print the output to .PD 0 .TP pop - symbolic constant of the population whose statistics are printed .PD 1 .SH OUTPUT PARAMETERS .PD 0 .TP none .PD 1 .SH SYNOPSIS .nf #include "pgapack.h" void PGAPrintReport(ctx, fp, pop) PGAContext *ctx FILE *fp int pop .fi .SH LOCATION report.c .SH EXAMPLE .nf Example: PGAContext *ctx; int p; : PGAPrintReport(ctx, stdout, PGA_NEWPOP); .fi