source: trunk/optimizer/src/pgapack/gekco/pgapack/man/man8/PGACopyIndividual.8 @ 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: 733 bytes
Line 
1.TH PGACopyIndividual 8 "05/01/95" " " "PGAPack"
2.SH NAME
3PGACopyIndividual \- copies string p1 in population pop1 to position p2 in
4population pop2
5.SH INPUT PARAMETERS
6.PD 0
7.TP
8ctx
9- context variable
10.PD 0
11.TP
12p1
13- string to copy
14.PD 0
15.TP
16pop1
17- symbolic constant of population containing string p1
18.PD 0
19.TP
20p2
21- string to copy p1 to
22.PD 0
23.TP
24pop2
25- symbolic constant of population containing string p2
26.PD 1
27.SH OUTPUT PARAMETERS
28.PD 0
29.TP
30none
31
32.PD 1
33.SH SYNOPSIS
34.nf
35#include "pgapack.h"
36void  PGACopyIndividual(ctx, p1, pop1, p2, pop2)
37PGAContext *ctx
38int p1
39int pop1
40int p2
41int pop2
42.fi
43.SH LOCATION
44utility.c
45.SH EXAMPLE
46.nf
47Example:
48PGAContext *ctx;
49int i,j;
50:
51PGACopyIndividual(ctx, i, PGA_OLDPOP, j, PGA_NEWPOP);
52
53.fi
Note: See TracBrowser for help on using the repository browser.