forgot to initialize i,j,k

This commit is contained in:
James E McClure 2018-01-17 13:21:48 -05:00
parent e6905828d5
commit 44bb8588ec

View File

@ -218,6 +218,7 @@ void Domain::getBlobConnections(int * List, int count, int neighbor, int directi
void Domain::InitializeRanks()
{
int i,j,k;
// map the rank to the block index
kproc = rank/(nprocx*nprocy);
jproc = (rank-nprocx*nprocy*kproc)/nprocx;