Fixing minor bug without MPI

This commit is contained in:
Mark Berrill
2014-11-11 12:06:02 -05:00
parent 6d7e19a511
commit baef88b665
2 changed files with 3 additions and 1 deletions

View File

@@ -123,7 +123,7 @@ int MPI_Comm_size( MPI_Comm, int *size )
}
int MPI_Comm_rank( MPI_Comm, int *rank )
{
*rank = 1;
*rank = 0;
return 0;
}
int MPI_Barrier( MPI_Comm )