source: trunk/optimizer/src/pgapack/gekco/pgapack/man/man4/PGASendIndividual.4 @ 815

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

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

File size: 792 bytes
Line 
1.TH PGASendIndividual 4 "05/01/95" " " "PGAPack"
2.SH NAME
3PGASendIndividual \- transmit an individual to another process
4.SH INPUT PARAMETERS
5.PD 0
6.TP
7ctx
8- context variable
9.PD 0
10.TP
11p
12- index of an individual
13.PD 0
14.TP
15pop
16- symbolic constant of the population
17.PD 0
18.TP
19dest
20- ID of the process where this is going
21.PD 0
22.TP
23tag
24- MPI tag to send with the individual
25.PD 0
26.TP
27comm
28- MPI communicator
29.PD 1
30.SH OUTPUT PARAMETERS
31.PD 0
32.TP
33none
34
35.PD 1
36.SH SYNOPSIS
37.nf
38#include "pgapack.h"
39void  PGASendIndividual(ctx, p, pop, dest, tag, comm)
40PGAContext *ctx
41int p
42int pop
43int dest
44int tag
45MPI_Comm comm
46.fi
47.SH LOCATION
48parallel.c
49.SH EXAMPLE
50.nf
51PGAContext *ctx;
52int p, dest;
53:
54dest = SelectAFreeProcessor();
55PGASendIndividual(ctx, p, PGA_NEWPOP, dest, PGA_SR_STRINGTOEVAL, comm);
56
57.fi
Note: See TracBrowser for help on using the repository browser.