From: Guido Kanschat Date: Wed, 9 Mar 2005 14:45:31 +0000 (+0000) Subject: variable renamed X-Git-Tag: v8.0.0~14469 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fd6486f7fa18b56eaa39792ff507b79ce843889;p=dealii.git variable renamed git-svn-id: https://svn.dealii.org/trunk@10059 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/multigrid/mg_dof_tools.cc b/deal.II/deal.II/source/multigrid/mg_dof_tools.cc index 6c0d3ee1f9..9e667dd667 100644 --- a/deal.II/deal.II/source/multigrid/mg_dof_tools.cc +++ b/deal.II/deal.II/source/multigrid/mg_dof_tools.cc @@ -394,16 +394,16 @@ MGTools::make_flux_sparsity_pattern_edge ( const unsigned int dofs_per_cell = dof.get_fe().dofs_per_cell; std::vector dofs_on_this_cell(dofs_per_cell); std::vector dofs_on_other_cell(dofs_per_cell); - Table<2,bool> support_on_face(total_dofs, GeometryInfo::faces_per_cell); + Table<2,bool> support_on_face(dofs_per_cell, GeometryInfo::faces_per_cell); typename MGDoFHandler::cell_iterator cell = dof.begin(level), endc = dof.end(level); - Table<2,DoFTools::Coupling> flux_dof_mask(total_dofs, total_dofs); + Table<2,DoFTools::Coupling> flux_dof_mask(dofs_per_cell, dofs_per_cell); DoFTools::compute_dof_couplings(flux_dof_mask, flux_mask, fe); - for (unsigned int i=0; i::faces_per_cell;++f) support_on_face(i,f) = fe.has_support_on_face(i,f);