From 70f67cfc8e156a862a85bed2fc5601b768999ecb Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 12 Aug 2024 17:14:23 -0400 Subject: [PATCH] portable::FEEvaluation documentation fixes --- include/deal.II/matrix_free/portable_fe_evaluation.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/deal.II/matrix_free/portable_fe_evaluation.h b/include/deal.II/matrix_free/portable_fe_evaluation.h index 9c55e8c152..f94adf548d 100644 --- a/include/deal.II/matrix_free/portable_fe_evaluation.h +++ b/include/deal.II/matrix_free/portable_fe_evaluation.h @@ -135,9 +135,9 @@ namespace Portable /** * Evaluate the function values and the gradients of the FE function given * at the DoF values in the input vector at the quadrature points on the - * unit cell. The function arguments specify which parts shall actually be - * computed. This function needs to be called before the functions - * @p get_value() or @p get_gradient() give useful information. + * unit cell. The function argument @p evaluate_flag specifies which parts + * shall actually be computed. This function needs to be called before the + * functions @p get_value() or @p get_gradient() give useful information. */ DEAL_II_HOST_DEVICE void evaluate(const EvaluationFlags::EvaluationFlags evaluate_flag); @@ -157,9 +157,8 @@ namespace Portable /** * This function takes the values and/or gradients that are stored on * quadrature points, tests them by all the basis functions/gradients on - * the cell and performs the cell integration. The two function arguments - * @p integrate_val and @p integrate_grad are used to enable/disable some - * of the values or the gradients. + * the cell and performs the cell integration as specified by the + * @p integration_flag argument. */ DEAL_II_HOST_DEVICE void integrate(const EvaluationFlags::EvaluationFlags integration_flag); -- 2.39.5