From 1a0c8484acb037951901160312635bb325db8726 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 17 Dec 2005 22:49:29 +0000 Subject: [PATCH] Restore previous behavior. git-svn-id: https://svn.dealii.org/trunk@11872 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/dof_renumbering.cc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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); } -- 2.39.5