From c9ba18d203104a298a59f3f62a9144ce7741bdab Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 22 Sep 2011 03:02:20 +0000 Subject: [PATCH] Minor adjustments to make this program more similar with ASPECT before we started to implement significantly new physics there. git-svn-id: https://svn.dealii.org/trunk@24360 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/step-32.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index b000b0c185..6cb568d79b 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -7,7 +7,7 @@ /* $Id$ */ /* Author: Martin Kronbichler, Uppsala University, Wolfgang Bangerth, Texas A&M University, - Timo Heister, University of Göttingen, 2008-2011 */ + Timo Heister, University of Goettingen, 2008-2011 */ /* */ /* Copyright (C) 2008, 2009, 2010, 2011 by the deal.II authors */ /* */ @@ -3991,6 +3991,12 @@ void BoussinesqFlowProblem::run () -time_step/old_time_step, old_old_temperature_solution); } + + // every 100 time steps output + // a summary of the current + // timing information + if (timestep_number % 100 == 0) + computing_timer.print_summary (); } while (true); -- 2.39.5