From 55593e442cd14e9fc739ca3a5cdae5eb75faccdd Mon Sep 17 00:00:00 2001 From: kanschat Date: Thu, 31 May 2007 19:41:48 +0000 Subject: [PATCH] make results more scannable git-svn-id: https://svn.dealii.org/trunk@14739 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/benchmarks/dof_handler_timing_01.cc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/benchmarks/dof_handler_timing_01.cc b/tests/benchmarks/dof_handler_timing_01.cc index 713efbf46c..87364c19e6 100644 --- a/tests/benchmarks/dof_handler_timing_01.cc +++ b/tests/benchmarks/dof_handler_timing_01.cc @@ -59,7 +59,7 @@ void check_dofs(DOF& dof, unsigned int repeat) template void check (bool local) { - deallog << "Dimension " << dim << std::endl; + deallog << "Start mesh" << std::endl; Triangulation tr(Triangulation::maximum_smoothing); GridGenerator::hyper_cube(tr); @@ -74,7 +74,7 @@ void check (bool local) deallog << "Levels " << tr.n_levels() << " Cells "<< tr.n_cells() << std::endl - << " active " << tr.n_active_cells() + << "active " << tr.n_active_cells() << " memory " << tr.memory_consumption()/1.e6 << std::endl; @@ -95,12 +95,20 @@ int main() deallog.log_time_differences(true); deallog.attach(out); deallog.push("local"); + deallog.push("2d"); check<2>(true); + deallog.pop(); + deallog.push("3d"); check<3>(true); deallog.pop(); + deallog.pop(); deallog.push("global"); + deallog.push("2d"); check<2>(false); + deallog.pop(); + deallog.push("3d"); check<3>(false); deallog.pop(); + deallog.pop(); } -- 2.39.5