From: Baerbel Jannsen Date: Fri, 11 Jun 2010 16:41:45 +0000 (+0000) Subject: bug found in copy_from_mg in TransferSelect X-Git-Tag: v8.0.0~6060 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63d342d8bc9ec1e1e900921a95fade2976974c60;p=dealii.git bug found in copy_from_mg in TransferSelect git-svn-id: https://svn.dealii.org/trunk@21202 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/multigrid/mg_transfer_component.templates.h b/deal.II/deal.II/include/multigrid/mg_transfer_component.templates.h index 2902b33e99..ab31dd6b98 100644 --- a/deal.II/deal.II/include/multigrid/mg_transfer_component.templates.h +++ b/deal.II/deal.II/include/multigrid/mg_transfer_component.templates.h @@ -42,7 +42,7 @@ MGTransferSelect::copy_to_mg ( MGLevelObject > &dst, const BlockVector &src) const { - do_copy_to_mg (mg_dof_handler, dst, src); + do_copy_to_mg (mg_dof_handler, dst, src.block(target_component[selected_component])); }