From: bangerth Date: Mon, 4 Sep 2006 16:46:09 +0000 (+0000) Subject: Simplify testcase a bit. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4b11675eb5c794c9c305fb9c3b378ce5d41cfd3;p=dealii-svn.git Simplify testcase a bit. git-svn-id: https://svn.dealii.org/trunk@13834 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;