debugging tests/TestSegDist

This commit is contained in:
James E McClure 2015-06-03 21:11:50 -04:00
parent a49b71daef
commit f2846c0d7b

View File

@ -21,8 +21,11 @@ int main(int argc, char **argv)
MPI_Comm_size(MPI_COMM_WORLD,&nprocs); MPI_Comm_size(MPI_COMM_WORLD,&nprocs);
int i,j,k,n,nn; int i,j,k,n,nn;
int iproc,jproc,kproc;
int nx,ny,nz; int nx,ny,nz;
int Nx, Ny, Nz, N; int Nx, Ny, Nz, N;
int nprocx, nprocy, nprocz, nspheres;
double Lx, Ly, Lz;
Nx = Ny = Nz = 50; Nx = Ny = Nz = 50;
N = Nx*Ny*Nz; N = Nx*Ny*Nz;
@ -33,8 +36,6 @@ int main(int argc, char **argv)
//....................................................................... //.......................................................................
// Reading the domain information file // Reading the domain information file
//....................................................................... //.......................................................................
int nprocx, nprocy, nprocz, nx, ny, nz, nspheres;
double Lx, Ly, Lz;
ifstream domain("Domain.in"); ifstream domain("Domain.in");
domain >> nprocx; domain >> nprocx;
domain >> nprocy; domain >> nprocy;