From 2fd6486f7fa18b56eaa39792ff507b79ce843889 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Wed, 9 Mar 2005 14:45:31 +0000 Subject: [PATCH] variable renamed git-svn-id: https://svn.dealii.org/trunk@10059 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/multigrid/mg_dof_tools.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.39.5