From 41f60e749ac690817e1caf46d4b1b11643a7b8e2 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Tue, 3 Mar 2020 14:52:24 +0100 Subject: [PATCH] Fix bug in FEEvaluation for constraints in face integrals --- include/deal.II/matrix_free/fe_evaluation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 6ecc583b30..c27bfacd71 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -3899,7 +3899,7 @@ FEEvaluationBase:: Assert(cells[v] < dof_info->row_starts.size() - 1, ExcInternalError()); has_constraints = - has_constraints && + has_constraints || dof_info ->row_starts[cells[v] * n_fe_components + first_selected_component + n_components] -- 2.39.5