From 3a5f9cb7d52916249937f0dec11bf7ffc5531f9e Mon Sep 17 00:00:00 2001 From: Joachim Schoeberl Date: Sun, 25 Jan 2009 12:35:44 +0000 Subject: [PATCH] ARRAY -> Array --- libsrc/general/mpi_interface.hpp | 8 ++++---- libsrc/include/mystdlib.h | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/libsrc/general/mpi_interface.hpp b/libsrc/general/mpi_interface.hpp index 7d72c5bc..e554fc03 100644 --- a/libsrc/general/mpi_interface.hpp +++ b/libsrc/general/mpi_interface.hpp @@ -99,7 +99,7 @@ extern MPI_Comm MPI_HIGHORDER_COMM; } template - inline void MyMPI_Recv ( ARRAY & s, int src) + inline void MyMPI_Recv ( Array & s, int src) { MPI_Status status; int len; @@ -111,7 +111,7 @@ extern MPI_Comm MPI_HIGHORDER_COMM; } template - inline int MyMPI_Recv ( ARRAY & s) + inline int MyMPI_Recv ( Array & s) { MPI_Status status; int len; @@ -185,7 +185,7 @@ extern MPI_Comm MPI_HIGHORDER_COMM; } template - inline void MyMPI_Bcast (ARRAY & s, MPI_Comm comm = MPI_COMM_WORLD) + inline void MyMPI_Bcast (Array & s, MPI_Comm comm = MPI_COMM_WORLD) { int size = s.Size(); MyMPI_Bcast (size, comm); @@ -194,7 +194,7 @@ extern MPI_Comm MPI_HIGHORDER_COMM; } template - inline void MyMPI_Bcast (ARRAY & s, int root, MPI_Comm comm = MPI_COMM_WORLD) + inline void MyMPI_Bcast (Array & s, int root, MPI_Comm comm = MPI_COMM_WORLD) { int id; MPI_Comm_rank(MPI_HIGHORDER_COMM, &id); diff --git a/libsrc/include/mystdlib.h b/libsrc/include/mystdlib.h index 170dcd11..5c54f07f 100644 --- a/libsrc/include/mystdlib.h +++ b/libsrc/include/mystdlib.h @@ -38,12 +38,13 @@ #endif +/* #ifdef METIS namespace metis { extern "C" { #include } } #endif - +*/ #ifndef NO_PARALLEL_THREADS