72 |
|
// first things first, all of the initializations |
73 |
|
|
74 |
|
#ifdef IS_MPI |
75 |
< |
MPI::Init( argc, argv ); // the MPI communicators |
75 |
> |
MPI_Init( &argc, &argv ); // the MPI communicators |
76 |
|
#endif |
77 |
|
|
78 |
|
initSimError(); // the error handler |
104 |
|
" | |\n"<< |
105 |
|
" | version " << |
106 |
|
OPENMD_VERSION_MAJOR << "." << OPENMD_VERSION_MINOR << revision << |
107 |
< |
" http://www.openmd.net |\n"<< |
107 |
> |
" http://www.openmd.org |\n"<< |
108 |
|
" | |\n"<< |
109 |
|
" | OpenMD is an OpenScience project. All source code is available for any |\n"<< |
110 |
|
" | use whatsoever under a BSD-style license. |\n"<< |
229 |
|
errorCheckPoint(); |
230 |
|
|
231 |
|
#ifdef IS_MPI |
232 |
< |
MPI::Finalize(); |
232 |
> |
MPI_Finalize(); |
233 |
|
#endif |
234 |
|
|
235 |
|
return 0 ; |