This commit is contained in:
Markus Schmidt 2026-01-06 14:05:44 +01:00
commit 4c92446409
74 changed files with 169041 additions and 0 deletions

16
sheet7/E1234/greetings.h Normal file
View file

@ -0,0 +1,16 @@
// general header for all functions in directory
#ifndef GREETINGS_FILE
#define GREETINGS_FILE
#include <mpi.h>
/** Each process finds out its host, sends this information
to root process 0 which prints this information for each process.
@param[in] icomm the MPI process group that is used.
*/
void greetings(MPI_Comm const &icomm);
void greetings_cpp(MPI_Comm const &icomm);
#endif