source: trunk/optimizer/src/pgapack/gekco/pgapack/man/man1/PGASetEvaluation.1 @ 815

Last change on this file since 815 was 815, checked in by liveletlive, 16 years ago

Committing the /tmp/gekco/pgapack folder that contains the older PGAPack version and Prof. Klimecks changes to it.

File size: 800 bytes
Line 
1.TH PGASetEvaluation 1 "05/01/95" " " "PGAPack"
2.SH NAME
3PGASetEvaluation \- Set the evaluation function value for a string to a
4specified value.  Also sets the evaulation up to date flag to PGA_TRUE.
5.SH INPUT PARAMETERS
6.PD 0
7.TP
8ctx
9- context variable
10.PD 0
11.TP
12p
13- string index
14.PD 0
15.TP
16pop
17- symbolic constant of the population string p is in
18.PD 0
19.TP
20val
21- the (user) evaluation value to assign to string p
22.PD 1
23.SH OUTPUT PARAMETERS
24.PD 0
25.TP
26none
27
28.PD 1
29.SH SYNOPSIS
30.nf
31#include "pgapack.h"
32void  PGASetEvaluation(ctx, p, pop, val)
33PGAContext *ctx
34int p
35int pop
36double val
37.fi
38.SH LOCATION
39evaluate.c
40.SH EXAMPLE
41.nf
42Example:
43Set the evaluation function value of string p in population PGA_NEWPOP
44to 123.456.
45
46PGAContext *ctx;
47int p;
48:
49PGASetEvaluation(ctx, p, PGA_NEWPOP, 123.456);
50
51.fi
Note: See TracBrowser for help on using the repository browser.