From 2d4313a32ad61308320cd2b2583dab6d4823c48d Mon Sep 17 00:00:00 2001 From: janssen Date: Wed, 3 Mar 2010 19:55:30 +0000 Subject: [PATCH] copy_to_and_from_indices hold the global dof number and not a shifted global number git-svn-id: https://svn.dealii.org/trunk@20730 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/multigrid/mg_transfer_component.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/multigrid/mg_transfer_component.cc b/deal.II/deal.II/source/multigrid/mg_transfer_component.cc index 82830b533d..8ec9dedbb9 100644 --- a/deal.II/deal.II/source/multigrid/mg_transfer_component.cc +++ b/deal.II/deal.II/source/multigrid/mg_transfer_component.cc @@ -651,7 +651,7 @@ void MGTransferSelect::build_matrices ( const unsigned int global_start = component_start[target_component[component]]; temp_copy_indices[level_dof_indices[i]-level_start] = - global_dof_indices[i]-global_start; + global_dof_indices[i];//-global_start; } } } -- 2.39.5