From: Martin Kronbichler Date: Fri, 18 Sep 2020 15:10:14 +0000 (+0200) Subject: Add 3/2 over-integration to list of instantiated quadratures X-Git-Tag: v9.3.0-rc1~1087^2~6 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e6729549217c11856601610ea3128dc193d9dff;p=dealii.git Add 3/2 over-integration to list of instantiated quadratures --- 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...);