//----------------------------------------------------------------------
// $Id$
-// Version: $Name$
+// Version: $Name$
//
-// Copyright (C) 2009, 2010, 2011 by the deal.II authors
+// Copyright (C) 2009, 2010, 2011, 2012 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
test_block_list(const Triangulation<dim>& tr, const FiniteElement<dim>& fe)
{
deallog << fe.get_name() << std::endl;
-
+
MGDoFHandler<dim> dof;
- dof.initialize(tr, fe);
-
+ dof.initialize(tr, fe);
+
const unsigned int level = tr.n_levels()-1;
{
DoFTools::make_vertex_patches(bl, dof, level, true, true, false);
bl.compress();
print_patches(bl);
- deallog.pop();
+ deallog.pop();
deallog << std::endl;
}
{
int main()
{
- initlog(__FILE__, true);
+ initlog(__FILE__);
deallog.push("2D");
test_global_refinement<2>(&test_block_list<2>);
deallog.pop();