From: bangerth Date: Thu, 21 Sep 2006 20:58:29 +0000 (+0000) Subject: Minor changes without net effect X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae02ba9f877dc074527750bd5d637fce2b321b66;p=dealii-svn.git Minor changes without net effect git-svn-id: https://svn.dealii.org/trunk@13943 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/hp/crash_10.cc b/tests/hp/crash_10.cc index e5eb04a1e9..6ecd9016ce 100644 --- a/tests/hp/crash_10.cc +++ b/tests/hp/crash_10.cc @@ -52,7 +52,7 @@ void test () GridGenerator::hyper_cube (triangulation, -1, 1); - triangulation.refine_global (5-dim); + triangulation.refine_global (2); deallog << "Number of active cells: " << triangulation.n_active_cells() << std::endl; @@ -66,7 +66,7 @@ void test () typename hp::DoFHandler::active_cell_iterator cell = dof_handler.begin_active (), endc = dof_handler.end (); for (; cell != endc; ++cell) - cell->set_active_fe_index (random() % 4); + cell->set_active_fe_index (random() % fe.size()); dof_handler.distribute_dofs (fe); DoFTools::make_hanging_node_constraints (dof_handler,