Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEEvaluation: fix docs for fast_evaluation_supported() #14943

Merged
merged 1 commit into from
Mar 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions include/deal.II/matrix_free/fe_evaluation.h
Original file line number Diff line number Diff line change
Expand Up @@ -2174,11 +2174,11 @@ class FEEvaluation : public FEEvaluationAccess<dim,
reinit(const typename Triangulation<dim>::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
Expand Down Expand Up @@ -2604,11 +2604,11 @@ class FEFaceEvaluation : public FEEvaluationAccess<dim,
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
Expand Down Expand Up @@ -9191,11 +9191,11 @@ FEEvaluation<dim,
Number,
VectorizedArrayType>::
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<dim, VectorizedArrayType>::
fast_evaluation_supported(given_degree, give_n_q_points_1d) :
fast_evaluation_supported(given_degree, given_n_q_points_1d) :
true;
}

Expand All @@ -9215,11 +9215,11 @@ FEFaceEvaluation<dim,
Number,
VectorizedArrayType>::
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<dim, VectorizedArrayType>::
fast_evaluation_supported(given_degree, give_n_q_points_1d) :
fast_evaluation_supported(given_degree, given_n_q_points_1d) :
true;
}

Expand Down