diff --git a/cpu/D3Q19.cpp b/cpu/D3Q19.cpp index 07b28ecc..90d919e0 100644 --- a/cpu/D3Q19.cpp +++ b/cpu/D3Q19.cpp @@ -49,7 +49,8 @@ extern "C" void UnpackDist(int q, int Cqx, int Cqy, int Cqz, int *list, int sta // } // list[idx] = nn; // Don't unpack distributions into the solid phase - if (dist[q*N+nn] > 0.0) dist[q*N+nn] = recvbuf[start+idx]; + // if (dist[q*N+nn] > 0.0) dist[q*N+nn] = recvbuf[start+idx]; + dist[q*N+nn] = recvbuf[start+idx]; } }