From: Peter Munch Date: Sat, 29 May 2021 15:33:42 +0000 (+0200) Subject: Early deprecate functions in FEEvaluation X-Git-Tag: v9.4.0-rc1~1314^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12350%2Fhead;p=dealii.git Early deprecate functions in FEEvaluation --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 2e8fbbcc2a..cff1d6c425 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -2789,7 +2789,7 @@ public: * Like above but with separate bool flags. * @deprecated use evaluate() with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void evaluate(const bool evaluate_values, const bool evaluate_gradients, const bool evaluate_hessians = false); @@ -2814,7 +2814,7 @@ public: * Like above but using separate bool flags. * @deprecated use evaluate() with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void evaluate(const VectorizedArrayType *values_array, const bool evaluate_values, const bool evaluate_gradients, @@ -2842,7 +2842,7 @@ public: * @deprecated Please use the gather_evaluate() function with the EvaluationFlags argument. */ template - void + DEAL_II_DEPRECATED_EARLY void gather_evaluate(const VectorType &input_vector, const bool evaluate_values, const bool evaluate_gradients, @@ -2865,7 +2865,7 @@ public: /** * @deprecated Please use the integrate() function with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void integrate(const bool integrate_values, const bool integrate_gradients); /** @@ -2886,7 +2886,7 @@ public: /** * @deprecated Please use the integrate() function with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void integrate(const bool integrate_values, const bool integrate_gradients, VectorizedArrayType *values_array); @@ -2913,7 +2913,7 @@ public: * @deprecated Please use the integrate_scatter() function with the EvaluationFlags argument. */ template - void + DEAL_II_DEPRECATED_EARLY void integrate_scatter(const bool integrate_values, const bool integrate_gradients, VectorType &output_vector); @@ -3208,7 +3208,7 @@ public: /** * @deprecated Please use the evaluate() function with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void evaluate(const bool evaluate_values, const bool evaluate_gradients); /** @@ -3230,7 +3230,7 @@ public: /** * @deprecated Please use the evaluate() function with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void evaluate(const VectorizedArrayType *values_array, const bool evaluate_values, const bool evaluate_gradients); @@ -3255,7 +3255,7 @@ public: * @deprecated Please use the gather_evaluate() function with the EvaluationFlags argument. */ template - void + DEAL_II_DEPRECATED_EARLY void gather_evaluate(const VectorType &input_vector, const bool evaluate_values, const bool evaluate_gradients); @@ -3275,7 +3275,7 @@ public: /** * @deprecated Please use the integrate() function with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void integrate(const bool integrate_values, const bool integrate_gradients); /** @@ -3293,7 +3293,7 @@ public: /** * @deprecated Please use the integrate() function with the EvaluationFlags argument. */ - void + DEAL_II_DEPRECATED_EARLY void integrate(const bool integrate_values, const bool integrate_gradients, VectorizedArrayType *values_array);