| Revision: | 349 |
| Committed: | Fri Mar 14 21:33:11 2003 UTC (22 years, 9 months ago) |
| Content type: | text/plain |
| File size: | 360 byte(s) |
| Log Message: | This commit was manufactured by cvs2svn to create branch 'stable-05'. |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | mmeineke | 274 | #include <stdio.h> |
| 2 | #include <stdlib.h> | ||
| 3 | #include <string.h> | ||
| 4 | #include <mpi.h> | ||
| 5 | |||
| 6 | #include <mpiForceField.h> | ||
| 7 | |||
| 8 | |||
| 9 | |||
| 10 | |||
| 11 | void sendFrcStruct( void *frcStruct, MPI_Datatype structType ){ | ||
| 12 | |||
| 13 | MPI_Bcast(frcStruct,1,structType,0,MPI_COMM_WORLD); | ||
| 14 | } | ||
| 15 | |||
| 16 | |||
| 17 | void recieveFrcStruct( void *frcStruct, MPI_Datatype structType ){ | ||
| 18 | |||
| 19 | MPI_Bcast(frcStruct,1,structType,0,MPI_COMM_WORLD); | ||
| 20 | } | ||
| 21 |