From: janssen Date: Fri, 11 Jun 2010 16:41:45 +0000 (+0000) Subject: bug found in copy_from_mg in TransferSelect X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b565e9c8af513582c6d1deff676d32b7f22a457;p=dealii-svn.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])); }