From f0c91a3797188aeaf07a5e9f1637cfae536dff71 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Thu, 19 Jan 2006 21:48:59 +0000 Subject: [PATCH] output matrices for higher order git-svn-id: https://svn.dealii.org/trunk@12100 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/fe/rt_5.cc | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tests/fe/rt_5.cc b/tests/fe/rt_5.cc index e6a29c92d9..9491e9fa82 100644 --- a/tests/fe/rt_5.cc +++ b/tests/fe/rt_5.cc @@ -2,7 +2,7 @@ // rt_5.cc,v 1.1 2003/06/09 15:59:07 wolf Exp // Version: // -// Copyright (C) 2003, 2004, 2005 by the deal.II authors +// Copyright (C) 2003, 2004, 2005, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -34,6 +34,7 @@ test(const unsigned int degree) FE_RaviartThomas fe_rt(degree); + if (false) for (unsigned int c=0; c::children_per_cell; ++c) { const FullMatrix & m = fe_rt.get_restriction_matrix(c); @@ -57,15 +58,15 @@ main() logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); - deallog.depth_console(0); + deallog.depth_console(10); + deallog.log_execution_time(true); deallog.threshold_double(1.e-10); - for (unsigned int degree=0; degree<1; ++degree) - test<2>(degree); -// test<3>(degree); + for (unsigned int degree=0; degree<3; ++degree) + { + test<2>(degree); +// test<3>(degree); + } return 0; } - - - -- 2.39.5