From: Buğrahan Temür Date: Wed, 15 Mar 2023 18:41:44 +0000 (+0100) Subject: Adjust beauty / doc from review X-Git-Tag: v9.5.0-rc1~469^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=232caf1267e4630289cb6fa93025f631a5a6b5b3;p=dealii.git Adjust beauty / doc from review --- diff --git a/doc/news/changes/minor/20230315Temur b/doc/news/changes/minor/20230315Temur index b117614031..782b11ed01 100644 --- a/doc/news/changes/minor/20230315Temur +++ b/doc/news/changes/minor/20230315Temur @@ -4,4 +4,4 @@ and `CellwiseInverseMassMatrixImplFlexible` have been extended. Internal interfaces for the coefficients now use ArrayView instead of AlignedVector.
-(Bugrahan Temur, 2023/03/15) \ No newline at end of file +(Bugrahan Temur, 2023/03/15) diff --git a/include/deal.II/matrix_free/operators.h b/include/deal.II/matrix_free/operators.h index d7f618cf86..e063c07411 100644 --- a/include/deal.II/matrix_free/operators.h +++ b/include/deal.II/matrix_free/operators.h @@ -660,8 +660,8 @@ namespace MatrixFreeOperators * FEEvaluationBase::JxW() method return the information of the correct * cell. It is assumed that the pointers of the input and output arrays * are valid over the length FEEvaluation::dofs_per_cell, which is the - * number of entries processed by this function. The `in_array` and - * `out_array` arguments may point to the same memory position. + * number of entries processed by this function. The @p in_array and + * @p out_array arguments may point to the same memory position. */ void apply(const VectorizedArrayType *in_array, @@ -673,11 +673,11 @@ namespace MatrixFreeOperators * The second-rank tensor at each quadrature point defines a linear operator * on a vector holding the dof components. It is assumed that the passed * input and output arrays are of correct size, namely - * FEEvaluation::dofs_per_cell long. The `in_array` and `out_array` + * FEEvaluation::dofs_per_cell long. The @p in_array and @p out_array * arguments may point to the same memory position. - * `inverse_dyadic_coefficients` must be dofs_per_component long, and every - * element must be a second-rank tensor of dimension `n_components`. All - * entries should also contain the inverse JxW values. + * @p inverse_dyadic_coefficients must be `dofs_per_component` long, and + * every element must be a second-rank tensor of dimension @p n_components. + * All entries should be multiplied with the inverse `JxW` values. */ void apply(const AlignedVector> diff --git a/tests/matrix_free/inverse_mass_10.cc b/tests/matrix_free/inverse_mass_10.cc index 8bd9ab69ce..7e4f9676e9 100644 --- a/tests/matrix_free/inverse_mass_10.cc +++ b/tests/matrix_free/inverse_mass_10.cc @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2014 - 2020 by the deal.II authors +// Copyright (C) 2023 by the deal.II authors // // This file is part of the deal.II library. // diff --git a/tests/matrix_free/inverse_mass_11.cc b/tests/matrix_free/inverse_mass_11.cc index 4407c2e7ff..1bf984c41d 100644 --- a/tests/matrix_free/inverse_mass_11.cc +++ b/tests/matrix_free/inverse_mass_11.cc @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2014 - 2020 by the deal.II authors +// Copyright (C) 2023 by the deal.II authors // // This file is part of the deal.II library. //