From 2690926d3cf602d2a21a7c3eba1f2952c4b97d71 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 18 Feb 2006 00:46:50 +0000 Subject: [PATCH] Same for 3d. git-svn-id: https://svn.dealii.org/trunk@12406 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/hp/crash_02.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; } -- 2.39.5