From: Martin Kronbichler Date: Tue, 17 Dec 2013 18:41:31 +0000 (+0000) Subject: Fix unit support points. X-Git-Tag: v8.2.0-rc1~1171 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2c3d92e20226805e52aec7656894e57dd519e7b;p=dealii.git Fix unit support points. git-svn-id: https://svn.dealii.org/trunk@32042 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/fe/fe_face.cc b/deal.II/source/fe/fe_face.cc index 03fda70a36..1a21a6802d 100644 --- a/deal.II/source/fe/fe_face.cc +++ b/deal.II/source/fe/fe_face.cc @@ -86,10 +86,14 @@ FE_FaceQ::FE_FaceQ (const unsigned int degree) for (unsigned int e=0, c=0; eunit_support_points[n_face_dofs*2*d+i][e] = - this->unit_face_support_points[i][c]; + this->unit_face_support_points[renumber][c]; this->unit_support_points[n_face_dofs*(2*d+1)+i][e] = - this->unit_face_support_points[i][c]; + this->unit_face_support_points[renumber][c]; this->unit_support_points[n_face_dofs*(2*d+1)+i][d] = 1; ++c; }