From: wolf Date: Tue, 6 May 2003 19:18:55 +0000 (+0000) Subject: Fix a mostly trivial bug in the constraint matrices for 1d and degree=1. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f45f4dc826bf70c99a494833f53aee45fb95e285;p=dealii-svn.git Fix a mostly trivial bug in the constraint matrices for 1d and degree=1. git-svn-id: https://svn.dealii.org/trunk@7590 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_q.cc b/deal.II/deal.II/source/fe/fe_q.cc index b6c93f2ddf..84bbfaef08 100644 --- a/deal.II/deal.II/source/fe/fe_q.cc +++ b/deal.II/deal.II/source/fe/fe_q.cc @@ -573,7 +573,7 @@ FE_Q::initialize_restriction () this->restriction[0](0,0) = 1; this->restriction[0](2,1) = 1; this->restriction[1](1,1) = 1; - this->restriction[1](1,1) = 1; + this->restriction[1](2,0) = 1; break; case 3: this->restriction[0](0,0) = 1;