From 29be30cf561466a38537731c0a5e6d28d56d49e4 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Sun, 20 Dec 2020 16:45:34 +0100 Subject: [PATCH] Remove n_q_points_face from fe_evaluation.h --- include/deal.II/matrix_free/fe_evaluation.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 08a786e95a..01aad2892c 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -3374,8 +3374,6 @@ inline FEEvaluationBaseData:: Assert(matrix_info->mapping_initialized() == true, ExcNotInitialized()); AssertDimension(matrix_info->get_task_info().vectorization_length, VectorizedArrayType::size()); - AssertDimension((is_face ? data->n_q_points_face : data->n_q_points), - n_quadrature_points); AssertDimension(n_quadrature_points, descriptor->n_q_points); } @@ -4152,8 +4150,7 @@ FEEvaluationBase:: Utilities::fixed_power(this->data->data.front().fe_degree + 1); const unsigned int dofs_per_component = this->data->dofs_per_component_on_cell; - const unsigned int n_quadrature_points = - is_face ? this->data->n_q_points_face : this->data->n_q_points; + const unsigned int n_quadrature_points = this->n_quadrature_points; const unsigned int shift = std::max(tensor_dofs_per_component + 1, dofs_per_component) * @@ -8353,7 +8350,7 @@ inline FEFaceEvaluationdata->dofs_per_component_on_cell) , dofs_per_cell(this->data->dofs_per_component_on_cell * n_components_) - , n_q_points(this->data->n_q_points_face) + , n_q_points(this->n_quadrature_points) {} -- 2.39.5