From: David Wells Date: Sat, 26 Apr 2025 20:07:31 +0000 (-0400) Subject: set_periodicity_constraints(): add a clarifying comment. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18391%2Fhead;p=dealii.git set_periodicity_constraints(): add a clarifying comment. The combined_orientation really is all we need here. --- diff --git a/source/dofs/dof_tools_constraints.cc b/source/dofs/dof_tools_constraints.cc index fb046467c0..01c2546100 100644 --- a/source/dofs/dof_tools_constraints.cc +++ b/source/dofs/dof_tools_constraints.cc @@ -3210,6 +3210,9 @@ namespace DoFTools std::vector dofs_1(dofs_per_face); std::vector dofs_2(dofs_per_face); + // Note that, in 3d, these functions take into account the line + // orientations on each face: i.e., this function does not need to + // consider line orientations. if (use_mg) face_1->get_mg_dof_indices(level, dofs_1, face_1_index); else