From bc9ba6ebf85bcabf220d5642c70e519bb886997e Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 29 Jun 2012 18:29:27 +0000 Subject: [PATCH] Suppress output to the screen. git-svn-id: https://svn.dealii.org/trunk@25663 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/block_list_02.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/deal.II/block_list_02.cc b/tests/deal.II/block_list_02.cc index a61b585cc6..2689a8dccc 100644 --- a/tests/deal.II/block_list_02.cc +++ b/tests/deal.II/block_list_02.cc @@ -1,8 +1,8 @@ //---------------------------------------------------------------------- // $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 @@ -18,10 +18,10 @@ void test_block_list(const Triangulation& tr, const FiniteElement& fe) { deallog << fe.get_name() << std::endl; - + MGDoFHandler dof; - dof.initialize(tr, fe); - + dof.initialize(tr, fe); + const unsigned int level = tr.n_levels()-1; { @@ -39,7 +39,7 @@ test_block_list(const Triangulation& tr, const FiniteElement& fe) DoFTools::make_vertex_patches(bl, dof, level, true, true, false); bl.compress(); print_patches(bl); - deallog.pop(); + deallog.pop(); deallog << std::endl; } { @@ -74,7 +74,7 @@ test_block_list(const Triangulation& tr, const FiniteElement& fe) int main() { - initlog(__FILE__, true); + initlog(__FILE__); deallog.push("2D"); test_global_refinement<2>(&test_block_list<2>); deallog.pop(); -- 2.39.5