Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tests/mesh/boundary_mesh.C
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ protected:
MeshTools::Generation::build_square(*_mesh, 3, 5,
0.2, 0.8, 0.2, 0.7, QUAD9);

// We'll need to skip repartitioning with DistributedMesh for now;
// otherwise the boundary meshes' interior parents might get
// We'll need to skip most repartitioning with DistributedMesh for
// now; otherwise the boundary meshes' interior parents might get
// shuffled off to different processors.
if (!_mesh->is_serial())
{
_mesh->skip_partitioning(true);
_left_boundary_mesh->skip_partitioning(true);
_all_boundary_mesh->skip_partitioning(true);
_internal_boundary_mesh->skip_partitioning(true);
_mesh->skip_noncritical_partitioning(true);
_left_boundary_mesh->skip_noncritical_partitioning(true);
_all_boundary_mesh->skip_noncritical_partitioning(true);
_internal_boundary_mesh->skip_noncritical_partitioning(true);
}

// Set subdomain ids for specific elements. This allows us to later
Expand Down