From: Sebastian Proell Date: Wed, 22 Mar 2023 16:10:17 +0000 (+0100) Subject: FEEvaluation: fix docs for fast_evaluation_supported() X-Git-Tag: v9.5.0-rc1~434^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a47a312e367ea149c76352c7c3ee627ce6fc1ae8;p=dealii.git FEEvaluation: fix docs for fast_evaluation_supported() --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index f415c98261..2af88182be 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -2174,11 +2174,11 @@ public: reinit(const typename Triangulation::cell_iterator &cell); /** - * Check if face evaluation/integration is supported. + * Check if fast evaluation/integration is supported. */ static bool fast_evaluation_supported(const unsigned int given_degree, - const unsigned int give_n_q_points_1d); + const unsigned int given_n_q_points_1d); /** * Evaluate the function values, the gradients, and the Hessians of the @@ -2604,11 +2604,11 @@ public: reinit(const unsigned int cell_batch_number, const unsigned int face_number); /** - * Check if face evaluation/integration is supported. + * Check if fast evaluation/integration is supported. */ static bool fast_evaluation_supported(const unsigned int given_degree, - const unsigned int give_n_q_points_1d); + const unsigned int given_n_q_points_1d); /** * Evaluates the function values, the gradients, and the Laplacians of the @@ -9191,11 +9191,11 @@ FEEvaluation:: fast_evaluation_supported(const unsigned int given_degree, - const unsigned int give_n_q_points_1d) + const unsigned int given_n_q_points_1d) { return fe_degree == -1 ? internal::FEEvaluationFactory:: - fast_evaluation_supported(given_degree, give_n_q_points_1d) : + fast_evaluation_supported(given_degree, given_n_q_points_1d) : true; } @@ -9215,11 +9215,11 @@ FEFaceEvaluation:: fast_evaluation_supported(const unsigned int given_degree, - const unsigned int give_n_q_points_1d) + const unsigned int given_n_q_points_1d) { return fe_degree == -1 ? internal::FEEvaluationFactory:: - fast_evaluation_supported(given_degree, give_n_q_points_1d) : + fast_evaluation_supported(given_degree, given_n_q_points_1d) : true; }