From: Wolfgang Bangerth Date: Sat, 18 Feb 2006 00:46:50 +0000 (+0000) Subject: Same for 3d. X-Git-Tag: v8.0.0~12276 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2690926d3cf602d2a21a7c3eba1f2952c4b97d71;p=dealii.git Same for 3d. git-svn-id: https://svn.dealii.org/trunk@12406 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/hp/crash_02.cc b/tests/hp/crash_02.cc index 5ca5094003..758abf8921 100644 --- a/tests/hp/crash_02.cc +++ b/tests/hp/crash_02.cc @@ -51,5 +51,17 @@ int main () dof_handler.begin_active()->set_active_fe_index(0); } + { + const unsigned int dim=3; + Triangulation tria; + GridGenerator::hyper_cube(tria); + + hp::FECollection fe_collection; + fe_collection.push_back (FE_DGQ (1)); + + hp::DoFHandler dof_handler(tria); + dof_handler.begin_active()->set_active_fe_index(0); + } + deallog << "OK" << std::endl; }