diff --git a/common/ScaLBL.h b/common/ScaLBL.h index 888f1849..f92cdb40 100644 --- a/common/ScaLBL.h +++ b/common/ScaLBL.h @@ -221,12 +221,12 @@ private: int rank_xz,rank_XZ,rank_xZ,rank_Xz; int rank_yz,rank_YZ,rank_yZ,rank_Yz; //...................................................................................... - //...................................................................................... int sendCount_x, sendCount_y, sendCount_z, sendCount_X, sendCount_Y, sendCount_Z; int sendCount_xy, sendCount_yz, sendCount_xz, sendCount_Xy, sendCount_Yz, sendCount_xZ; int sendCount_xY, sendCount_yZ, sendCount_Xz, sendCount_XY, sendCount_YZ, sendCount_XZ; //...................................................................................... + int recvCount_x, recvCount_y, recvCount_z, recvCount_X, recvCount_Y, recvCount_Z; int recvCount_xy, recvCount_yz, recvCount_xz, recvCount_Xy, recvCount_Yz, recvCount_xZ; int recvCount_xY, recvCount_yZ, recvCount_Xz, recvCount_XY, recvCount_YZ, recvCount_XZ; diff --git a/tests/TestMap.cpp b/tests/TestMap.cpp index 3bb55ae6..4efb9424 100644 --- a/tests/TestMap.cpp +++ b/tests/TestMap.cpp @@ -158,27 +158,6 @@ int main(int argc, char **argv) ScaLBL_Communicator ScaLBL_Comm(Dm); //Create a second communicator based on the regular data layout ScaLBL_Communicator ScaLBL_Comm_Regular(Dm); - - // Check that domain information properly copied to ScaLBL communicator - if (ScaLBL_Comm.sendCount_x != Dm.sendCount_x) printf("domain error x \n"); - if (ScaLBL_Comm.sendCount_X != Dm.sendCount_X) printf("domain error X \n"); - if (ScaLBL_Comm.sendCount_y != Dm.sendCount_y) printf("domain error y \n"); - if (ScaLBL_Comm.sendCount_Y != Dm.sendCount_Y) printf("domain error Y \n"); - if (ScaLBL_Comm.sendCount_z != Dm.sendCount_z) printf("domain error z \n"); - if (ScaLBL_Comm.sendCount_Z != Dm.sendCount_Z) printf("domain error Z \n"); - if (ScaLBL_Comm.sendCount_xy != Dm.sendCount_xy) printf("domain error xy \n"); - if (ScaLBL_Comm.sendCount_xY != Dm.sendCount_xY) printf("domain error xY \n"); - if (ScaLBL_Comm.sendCount_Xy != Dm.sendCount_Xy) printf("domain error Xy \n"); - if (ScaLBL_Comm.sendCount_XY != Dm.sendCount_XY) printf("domain error XY \n"); - if (ScaLBL_Comm.sendCount_xz != Dm.sendCount_xz) printf("domain error xz \n"); - if (ScaLBL_Comm.sendCount_xZ != Dm.sendCount_xZ) printf("domain error xZ \n"); - if (ScaLBL_Comm.sendCount_Xz != Dm.sendCount_Xz) printf("domain error Xz \n"); - if (ScaLBL_Comm.sendCount_XZ != Dm.sendCount_XZ) printf("domain error XZ \n"); - if (ScaLBL_Comm.sendCount_yz != Dm.sendCount_yz) printf("domain error yz \n"); - if (ScaLBL_Comm.sendCount_yZ != Dm.sendCount_yZ) printf("domain error yZ \n"); - if (ScaLBL_Comm.sendCount_Yz != Dm.sendCount_Yz) printf("domain error Yz \n"); - if (ScaLBL_Comm.sendCount_YZ != Dm.sendCount_YZ) printf("domain error YZ \n"); - if (rank==0){ printf("Total domain size = %i \n",N); printf("Reduced domain size = %i \n",Np);