From 16f52a50abb0e040c5852f067ae991793e12c77b Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Fri, 8 Apr 2016 17:20:40 +0200 Subject: [PATCH] FE_Bernstein uses equidistant points --- source/fe/fe_bernstein.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fe/fe_bernstein.cc b/source/fe/fe_bernstein.cc index fdba3c32af..1e828e207a 100644 --- a/source/fe/fe_bernstein.cc +++ b/source/fe/fe_bernstein.cc @@ -86,7 +86,7 @@ get_subface_interpolation_matrix (const FiniteElement &x_source_fe ExcInterpolationNotImplemented ())); const Quadrature - quad_face_support(FE_Q(source_fe->degree).get_unit_face_support_points ()); + quad_face_support(FE_Q(QIterated<1>(QTrapez<1>(),source_fe->degree)).get_unit_face_support_points ()); // Rule of thumb for FP accuracy, that can be expected for a given // polynomial degree. This value is used to cut off values close to -- 2.39.5