From d6f94d281d16714caad1833f8da60bc3b086d7c5 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 21 Mar 2025 13:25:21 -0400 Subject: [PATCH] Portable::FEEvaluation: remove deprecated functions taking bool These were deleted in the non-portable a while ago. No reason to keep these around. --- .../matrix_free/portable_fe_evaluation.h | 58 ------------------- 1 file changed, 58 deletions(-) diff --git a/include/deal.II/matrix_free/portable_fe_evaluation.h b/include/deal.II/matrix_free/portable_fe_evaluation.h index ce75f15eb5..de77819f27 100644 --- a/include/deal.II/matrix_free/portable_fe_evaluation.h +++ b/include/deal.II/matrix_free/portable_fe_evaluation.h @@ -172,18 +172,6 @@ namespace Portable DEAL_II_HOST_DEVICE void evaluate(const EvaluationFlags::EvaluationFlags evaluate_flag); - /** - * 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. - */ - DEAL_II_DEPRECATED_WITH_COMMENT("Use the version taking EvaluationFlags.") - DEAL_II_HOST_DEVICE - void - evaluate(const bool evaluate_val, const bool evaluate_grad); - /** * This function takes the values and/or gradients that are stored on * quadrature points, tests them by all the basis functions/gradients on @@ -193,18 +181,6 @@ namespace Portable DEAL_II_HOST_DEVICE void integrate(const EvaluationFlags::EvaluationFlags integration_flag); - /** - * 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. - */ - DEAL_II_DEPRECATED_WITH_COMMENT("Use the version taking EvaluationFlags.") - DEAL_II_HOST_DEVICE - void - integrate(const bool integrate_val, const bool integrate_grad); - /** * Same as above, except that the quadrature point is computed from thread * id. @@ -441,23 +417,6 @@ namespace Portable - template - DEAL_II_HOST_DEVICE void - FEEvaluation::evaluate( - const bool evaluate_val, - const bool evaluate_grad) - { - evaluate( - (evaluate_val ? EvaluationFlags::values : EvaluationFlags::nothing) | - (evaluate_grad ? EvaluationFlags::gradients : EvaluationFlags::nothing)); - } - - - template - DEAL_II_HOST_DEVICE void - FEEvaluation::integrate( - const bool integrate_val, - const bool integrate_grad) - { - integrate( - (integrate_val ? EvaluationFlags::values : EvaluationFlags::nothing) | - (integrate_grad ? EvaluationFlags::gradients : EvaluationFlags::nothing)); - } - - - template