From 5e6729549217c11856601610ea3128dc193d9dff Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Fri, 18 Sep 2020 17:10:14 +0200 Subject: [PATCH] Add 3/2 over-integration to list of instantiated quadratures --- .../matrix_free/evaluation_template_factory.templates.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/deal.II/matrix_free/evaluation_template_factory.templates.h b/include/deal.II/matrix_free/evaluation_template_factory.templates.h index f89eee257d..d730f89e1c 100644 --- a/include/deal.II/matrix_free/evaluation_template_factory.templates.h +++ b/include/deal.II/matrix_free/evaluation_template_factory.templates.h @@ -47,6 +47,9 @@ namespace internal return EvaluatorType::template run(args...); else if (n_q_points_1d == degree) return EvaluatorType::template run(args...); + else if (n_q_points_1d == (3 * degree) / 2 + 1) + return EvaluatorType::template run( + args...); else // slow path return EvaluatorType::template run<-1, 0>(args...); -- 2.39.5