Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Munch <peterrmuench@gmail.com>
  • Loading branch information
luca-heltai and peterrum committed Sep 24, 2023
1 parent 2705e86 commit 310b7a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions include/deal.II/fe/fe_coupling_values.h
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ enum class QuadratureCouplingType
* integration. This is equivalent to rewriting double integrals as a single
* sum over unrolled indices, and it is useful, for example, when performing
* integration of singular kernels, which require special quadrature rules
* both on the inside and on the outside integral. An assertion is thrown if
* both on the inside and on the outside integral. An exception is thrown if
* the two FEValuesBase objects do not provide the same number of quadrature
* points, but otherwise the two sets of points and weights can be arbitrary.
*/
Expand Down Expand Up @@ -685,8 +685,8 @@ enum class DoFCouplingType
*
* ...
*
* for (const unsigned int q : cfv.quadrature_point_indices()) { const auto
* &[x_q,y_q] = cfv.quadrature_point(q);
* for (const unsigned int q : cfv.quadrature_point_indices()) {
* const auto &[x_q,y_q] = cfv.quadrature_point(q);
*
* for (const unsigned int i : cfv.left_dof_indices())
* {
Expand Down Expand Up @@ -716,7 +716,7 @@ enum class DoFCouplingType
* and weights.
*
* According to the DoFCouplingType and QuadratureCouplingType argument passed
* to the constructor, the class behaves differently w.r.t. to how the dof
* to the constructor, the class behaves differently w.r.t. how the dof
* indices and the quadrature points of the two different FEValuesBase objects
* are grouped together.
*
Expand Down
2 changes: 1 addition & 1 deletion tests/fecoupling/fe_coupling_03.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// ---------------------------------------------------------------------


// Test QuadratureCouplingType::matchiing integration in FECouplingValues
// Test QuadratureCouplingType::matching integration in FECouplingValues
// with DoFCouplingType::contiguous. Typical for DG interfaces.

#include <deal.II/base/quadrature_lib.h>
Expand Down

0 comments on commit 310b7a3

Please sign in to comment.