From 591afddcdc578eb948780f5321262a7cc7bf1ac1 Mon Sep 17 00:00:00 2001 From: James E McClure Date: Sat, 30 Jun 2018 20:21:43 -0400 Subject: [PATCH] Attempt to guarantee iD halo --- common/Domain.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/common/Domain.cpp b/common/Domain.cpp index d3be5e23..3cae499a 100644 --- a/common/Domain.cpp +++ b/common/Domain.cpp @@ -734,6 +734,24 @@ void Domain::CommHaloIDs(){ } } } + recvCountID_x = sendCountID_x; + recvCountID_X = sendCountID_X; + recvCountID_y = sendCountID_y; + recvCountID_Y = sendCountID_Y; + recvCountID_z = sendCountID_z; + recvCountID_Z = sendCountID_Z; + recvCountID_xy = sendCountID_xy; + recvCountID_xY = sendCountID_xY; + recvCountID_Xy = sendCountID_Xy; + recvCountID_XY = sendCountID_XY; + recvCountID_xz = sendCountID_xz; + recvCountID_xZ = sendCountID_xZ; + recvCountID_Xz = sendCountID_Xz; + recvCountID_XZ = sendCountID_XZ; + recvCountID_yz = sendCountID_yz; + recvCountID_yZ = sendCountID_yZ; + recvCountID_Yz = sendCountID_Yz; + recvCountID_YZ = sendCountID_YZ; // send buffers sendID_x = new char [sendCountID_x]; sendID_y = new char [sendCountID_y];