From: wolf Date: Mon, 19 Apr 1999 14:48:02 +0000 (+0000) Subject: Fix bug with base elements used multiply. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff51cccd18178af7b2d1ba71980957cd57d8dcf2;p=dealii-svn.git Fix bug with base elements used multiply. git-svn-id: https://svn.dealii.org/trunk@1179 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_system.cc b/deal.II/deal.II/source/fe/fe_system.cc index 04bf948dc2..2c1c635395 100644 --- a/deal.II/deal.II/source/fe/fe_system.cc +++ b/deal.II/deal.II/source/fe/fe_system.cc @@ -361,8 +361,9 @@ void FESystem::build_interface_constraints () // no coupling if (n_index.first == m_index.first) interface_constraints(m,n) - = base_element(n_index.first).constraints()(m_index.second, - n_index.second); + = (base_element(component_to_base_table[n_index.first]) + .constraints()(m_index.second, + n_index.second)); }; };