From: Wolfgang Bangerth Date: Sat, 17 Dec 2005 22:49:29 +0000 (+0000) Subject: Restore previous behavior. X-Git-Tag: v8.0.0~12774 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a0c8484acb037951901160312635bb325db8726;p=dealii.git Restore previous behavior. git-svn-id: https://svn.dealii.org/trunk@11872 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/dof_renumbering.cc b/tests/deal.II/dof_renumbering.cc index 22616dba3a..c7799a7978 100644 --- a/tests/deal.II/dof_renumbering.cc +++ b/tests/deal.II/dof_renumbering.cc @@ -129,8 +129,16 @@ check_renumbering(MGDoFHandler& mgdof, bool discontinuous) { DoFRenumbering::downstream_dg(mgdof, level, direction); } - - DoFRenumbering::component_wise (mgdof, order); + + // renumber the non-MG part of the + // DoFHandler again. this is probably + // not what was meant in the first + // place, but is compatible with the + // behavior of the + // DoFRenumbering::component_wise set + // of functions before December 2005 + DoFRenumbering::component_wise (static_cast&>(mgdof), + order); print_dofs (mgdof, level); }