From: bangerth Date: Fri, 11 Aug 2006 18:22:33 +0000 (+0000) Subject: Further limit amount of work X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2ff3bc5333fc5b6ec03dec82ab1e14835cfe21e;p=dealii-svn.git Further limit amount of work git-svn-id: https://svn.dealii.org/trunk@13681 0785d39b-7218-0410-832d-ea1e28bc413d --- 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); }