From: Timo Heister Date: Wed, 20 Mar 2013 15:23:07 +0000 (+0000) Subject: use new TimerOutput features X-Git-Tag: v8.0.0~938 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61e49774c53f6a668a1a11b7fbc930cf723280ff;p=dealii.git use new TimerOutput features git-svn-id: https://svn.dealii.org/trunk@28958 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-42/step-42.cc b/deal.II/examples/step-42/step-42.cc index 1a77c4e03b..33fcc0f2d7 100644 --- a/deal.II/examples/step-42/step-42.cc +++ b/deal.II/examples/step-42/step-42.cc @@ -607,7 +607,7 @@ namespace Step42 nu (0.3), computing_timer (MPI_COMM_WORLD, pcout, - TimerOutput::summary, + TimerOutput::never, TimerOutput::wall_times) { // double _E, double _nu, double _sigma_0, double _gamma @@ -1533,6 +1533,7 @@ namespace Step42 computing_timer.exit_section("Graphical output"); computing_timer.print_summary(); + computing_timer.reset(); } } }