Accu
dexx.h
Go to the documentation of this file.
1 // general header for all functions in directory
2 
3 #ifndef HEADER_DEXX
4 #define HEADER_DEXX
5 #include <mpi.h>
14 void Send_ProcD(const int to, const int nin, const double xin[], const MPI_Comm icomm);
15 
24 void Recv_ProcD(const int from, int& nout, double xout[], const int maxbuf,
25  const MPI_Comm icomm);
26 
37 void ExchangeD(const int yourid, const int nin, const double xin[],
38  int& nout, double xout[], const int maxbuf, const MPI_Comm icomm);
39 
40 #endif
void Send_ProcD(const int to, const int nin, const double xin[], const MPI_Comm icomm)
Definition: dexx.cpp:9
void ExchangeD(const int yourid, const int nin, const double xin[], int &nout, double xout[], const int maxbuf, const MPI_Comm icomm)
Definition: dexx.cpp:53
void Recv_ProcD(const int from, int &nout, double xout[], const int maxbuf, const MPI_Comm icomm)
Definition: dexx.cpp:22