]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Portable::FEEvaluation: remove deprecated functions taking bool 18274/head
authorTimo Heister <timo.heister@gmail.com>
Fri, 21 Mar 2025 17:25:21 +0000 (13:25 -0400)
committerTimo Heister <timo.heister@gmail.com>
Fri, 21 Mar 2025 17:25:21 +0000 (13:25 -0400)
These were deleted in the non-portable a while ago. No reason to keep
these around.

include/deal.II/matrix_free/portable_fe_evaluation.h

index ce75f15eb50455076b344aa2828621a83e3aa098..de77819f27cf166119729b9a605500279670ddb7 100644 (file)
@@ -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 <int dim,
-            int fe_degree,
-            int n_q_points_1d,
-            int n_components_,
-            typename Number>
-  DEAL_II_HOST_DEVICE void
-  FEEvaluation<dim, fe_degree, n_q_points_1d, n_components_, Number>::evaluate(
-    const bool evaluate_val,
-    const bool evaluate_grad)
-  {
-    evaluate(
-      (evaluate_val ? EvaluationFlags::values : EvaluationFlags::nothing) |
-      (evaluate_grad ? EvaluationFlags::gradients : EvaluationFlags::nothing));
-  }
-
-
-
   template <int dim,
             int fe_degree,
             int n_q_points_1d,
@@ -503,23 +462,6 @@ namespace Portable
 
 
 
-  template <int dim,
-            int fe_degree,
-            int n_q_points_1d,
-            int n_components_,
-            typename Number>
-  DEAL_II_HOST_DEVICE void
-  FEEvaluation<dim, fe_degree, n_q_points_1d, n_components_, Number>::integrate(
-    const bool integrate_val,
-    const bool integrate_grad)
-  {
-    integrate(
-      (integrate_val ? EvaluationFlags::values : EvaluationFlags::nothing) |
-      (integrate_grad ? EvaluationFlags::gradients : EvaluationFlags::nothing));
-  }
-
-
-
   template <int dim,
             int fe_degree,
             int n_q_points_1d,

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.