From 1f67717b92b993991c89e030c196b3e61d5b6cbe Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 6 May 2003 19:18:55 +0000 Subject: [PATCH] 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 --- deal.II/deal.II/source/fe/fe_q.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5