From: bangerth Date: Wed, 5 May 2010 19:18:09 +0000 (+0000) Subject: Computers become faster. Increase workload slightly. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=164d1fb76f2b9da967bf372258dcbd15c123558a;p=dealii-svn.git Computers become faster. Increase workload slightly. git-svn-id: https://svn.dealii.org/trunk@21078 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/timer.cc b/tests/base/timer.cc index b42799d080..d8d8766f8d 100644 --- a/tests/base/timer.cc +++ b/tests/base/timer.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2010 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -59,17 +59,17 @@ int main () deallog.threshold_double(1.e-10); Timer t1,t2; - burn (20); + burn (50); double s01 = t1.stop(); double s02 = t2(); - burn (20); + burn (50); double s11 = t1.stop(); double s12 = t2(); t1.start(); - burn (20); + burn (50); double s21 = t1(); double s22 = t2(); - burn (20); + burn (50); double s31 = t1(); double s32 = t2();