// 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
FE_RaviartThomas<dim> fe_rt(degree);
+ if (false)
for (unsigned int c=0; c<GeometryInfo<dim>::children_per_cell; ++c)
{
const FullMatrix<double> & m = fe_rt.get_restriction_matrix(c);
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;
}
-
-
-