From: David Wells Date: Sat, 13 Apr 2024 20:31:08 +0000 (-0400) Subject: Remove a double negative. X-Git-Tag: v9.6.0-rc1~356^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac89cb889921aee7bfef73b301216e91d864cc4a;p=dealii.git Remove a double negative. --- diff --git a/include/deal.II/grid/reference_cell.h b/include/deal.II/grid/reference_cell.h index 803a5a00fb..5d87fd625d 100644 --- a/include/deal.II/grid/reference_cell.h +++ b/include/deal.II/grid/reference_cell.h @@ -1901,8 +1901,8 @@ ReferenceCell::face_to_cell_vertices( static constexpr ndarray table = { {{{0, 1}}, {{1, 2}}, {{2, 0}}}}; - return table[face][combined_face_orientation != - reversed_combined_line_orientation() ? + return table[face][combined_face_orientation == + default_combined_face_orientation() ? vertex : (1 - vertex)]; }