summaryrefslogtreecommitdiff
path: root/src/main/CactusDefaultEvolve.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-27 00:49:41 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-27 00:49:41 +0000
commit407b35ef0bc7466775ce53d0843a327d5fc2f369 (patch)
tree3f0e20e8ad119bdb3b5e7a232f3e68f1449cce1a /src/main/CactusDefaultEvolve.c
parenta178b5971aab28bd0ce124ac12746fbbd80c0b4c (diff)
Put #ifdef 0 around one MPI call.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@355 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/CactusDefaultEvolve.c')
-rw-r--r--src/main/CactusDefaultEvolve.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/CactusDefaultEvolve.c b/src/main/CactusDefaultEvolve.c
index 3e00d25c..e8208bac 100644
--- a/src/main/CactusDefaultEvolve.c
+++ b/src/main/CactusDefaultEvolve.c
@@ -276,10 +276,12 @@ void TerminationStepper(cGH *GH) {
int cactus_terminate_global;
cactus_terminate_global=cactus_terminate;
+#ifdef 0
#ifdef MPI
MPI_Allreduce(&cactus_terminate,&cactus_terminate_global,1,
MPI_INT,MPI_LOR,GH->PUGH_COMM_WORLD);
#endif
+#endif
if (cactus_terminate_global) {
cactus_terminate=TERMINATION_RAISED_BRDCAST;
printf("RECEIVED GLOBAL TERMINATION SIGNAL \n");