Skip to content

Commit d030eae

Browse files
committed
Fix a dependency problem
1 parent 806bd60 commit d030eae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

basicProgrammingTutorials/basicParallelComputing/app/basicParallelComputing.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ int main(int argc, char *argv[])
6868
// Spreading a value across all processors is done using a scatter operation.
6969
// The Pstream::blocking makes sure all processors are synchronised at this
7070
// line of the code and thus should use the same value.
71-
Pstream::scatter(meshVolume, Pstream::blocking);
72-
Pout << "Mesh volume on this processor is now " << meshVolume << endl;
71+
// Pstream::scatter(meshVolume, Pstream::blocking);
72+
// Pout << "Mesh volume on this processor is now " << meshVolume << endl;
7373

7474
// It is often useful to check the distribution of something across all
7575
// processors. This may be done using a list, with each element of which

0 commit comments

Comments
 (0)