From: Guido Kanschat Date: Thu, 30 Mar 2006 14:33:15 +0000 (+0000) Subject: misunderstood the purpose of component_to_base_table X-Git-Tag: v8.0.0~11946 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9431ff54db2a37eddea6ece276ff4bd7dd6d135;p=dealii.git misunderstood the purpose of component_to_base_table git-svn-id: https://svn.dealii.org/trunk@12772 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 ffd48cefae..5bde2b70eb 100644 --- a/deal.II/deal.II/source/fe/fe_system.cc +++ b/deal.II/deal.II/source/fe/fe_system.cc @@ -995,7 +995,7 @@ FESystem::build_cell_tables() for (unsigned int m = 0; m < element_multiplicity(base); ++m) for (unsigned int k=0; kcomponent_to_base_table[total_index++] - = std::make_pair(base,k+m*base_element(base).n_components()); + = std::make_pair(base,k); Assert (total_index == this->component_to_base_table.size(), ExcInternalError());