From 7d18314a8d92698d29f8dfae45fce8beeff2d121 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 16 Oct 2019 13:47:44 -0600 Subject: [PATCH] Use positive form for comments. --- source/grid/tria.cc | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/source/grid/tria.cc b/source/grid/tria.cc index e6fbd034b6..a2d8abfbc1 100644 --- a/source/grid/tria.cc +++ b/source/grid/tria.cc @@ -3166,8 +3166,10 @@ namespace internal ExcInconsistentLineInfoOfLine(line_vertices.first, line_vertices.second, "boundary ids")); - // do not use the boundary id provided in subcell_line - // if it is an internal one + // If the boundary id provided in subcell_line + // is anything other than the default + // (internal_face_boundary_id), then set it in the new + // triangulation. if (subcell_line.boundary_id != numbers::internal_face_boundary_id) line->set_boundary_id(subcell_line.boundary_id); @@ -3320,8 +3322,10 @@ namespace internal line[2]->index(), line[3]->index(), "boundary ids")); - // do not use the boundary id provided in subcell_quad - // if it is an invalid or internal one + // If the boundary id provided in subcell_line + // is anything other than the default + // (internal_face_boundary_id), then set it in the new + // triangulation. if (subcell_quad.boundary_id != numbers::internal_face_boundary_id) quad->set_boundary_id(subcell_quad.boundary_id); -- 2.39.5