missed one multi-label

This commit is contained in:
James E McClure 2018-07-01 08:34:46 -04:00
parent 2332188d17
commit 18c6df51a8

View File

@ -269,7 +269,7 @@ void Domain::CommInit()
for (i=1; i<Nx-1; i++){
// Local value to send
n = k*Nx*Ny+j*Nx+i;
if (id[n] != 0){
if (id[n] > 0){
// Counts for the six faces
if (i==1) sendList_x[sendCount_x++]=n;
if (j==1) sendList_y[sendCount_y++]=n;