commit/MOAB: tautges: Put some comments in structured3 about what kind of mesh is created.
1 new commit in MOAB: https://bitbucket.org/fathomteam/moab/commits/cfbd8c74d184/ Changeset: cfbd8c74d184 Branch: tautges/par-owner-fix User: tautges Date: 2013-11-15 18:28:10 Summary: Put some comments in structured3 about what kind of mesh is created. Affected #: 1 file diff --git a/test/parallel/structured3.cpp b/test/parallel/structured3.cpp index 17ad177..daf065b 100644 --- a/test/parallel/structured3.cpp +++ b/test/parallel/structured3.cpp @@ -14,6 +14,12 @@ using namespace moab; // Number of cells in each direction: int NC; + +/* This mesh creates a box that is NCxNCxNC in global dimension, partitioned among processors + * automatically using ScdInterface's SQIJK algorithm. It checks to make sure there are enough + * procs to support this partition method. After mesh creation, shared vertex resolution is done, + * then ghost exchange is done. + */ const int ITERS = 50; void create_parallel_mesh(); @@ -60,7 +66,7 @@ void create_parallel_mesh() times[0] = MPI_Wtime(); rval = scdi->construct_box(HomCoord(), HomCoord(), NULL, 0, // no vertex positions new_box, NULL, // not locally periodic - &par_data, true, false); // assign global ids & resolve shared verts + &par_data, true, false); // assign global ids, don't resolve shared verts CHECK_ERR(rval); // get global id tag Repository URL: https://bitbucket.org/fathomteam/moab/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org