From c2ff3bc5333fc5b6ec03dec82ab1e14835cfe21e Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 11 Aug 2006 18:22:33 +0000 Subject: [PATCH] Further limit amount of work git-svn-id: https://svn.dealii.org/trunk@13681 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/project_rt_01.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/deal.II/project_rt_01.cc b/tests/deal.II/project_rt_01.cc index 348a17345f..4cf563a6f6 100644 --- a/tests/deal.II/project_rt_01.cc +++ b/tests/deal.II/project_rt_01.cc @@ -25,6 +25,9 @@ template void test () { if (dim != 1) - for (unsigned int p=0; p<3; ++p) + // this is interesting also in 3d, but is + // exceedingly slow there. limit to the + // case of RT(0) elements in 3d + for (unsigned int p=0; p<(dim == 2 ? 3 : 1); ++p) test_no_hanging_nodes (FE_RaviartThomas(p), p+1, 1); } -- 2.39.5