From: wolf Date: Sat, 17 Dec 2005 22:49:29 +0000 (+0000) Subject: Restore previous behavior. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f237ebae89647c6a361bf5c65fbc71f7e9441dc5;p=dealii-svn.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); }