From b4b11675eb5c794c9c305fb9c3b378ce5d41cfd3 Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 4 Sep 2006 16:46:09 +0000 Subject: [PATCH] Simplify testcase a bit. git-svn-id: https://svn.dealii.org/trunk@13834 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/hp/crash_07.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/hp/crash_07.cc b/tests/hp/crash_07.cc index 309b13dd9c..fb91c85ff3 100644 --- a/tests/hp/crash_07.cc +++ b/tests/hp/crash_07.cc @@ -101,7 +101,8 @@ int main () for (hp::DoFHandler<2>::active_cell_iterator cell = dof_handler.begin_active(); cell != dof_handler.end(); ++cell, ++cell_no) - cell->set_active_fe_index (cell_no % fe.size()); + cell->set_active_fe_index (0); + (++dof_handler.begin_active())->set_active_fe_index (1); dof_handler.distribute_dofs (fe); deallog << "n_dofs=" << dof_handler.n_dofs() << std::endl; -- 2.39.5