From: Martin Kronbichler Date: Mon, 12 Jan 2009 16:44:31 +0000 (+0000) Subject: Use a reasonable final time. X-Git-Tag: v8.0.0~8142 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3c210b87a9050e78c92d513d2faa415843ab640;p=dealii.git Use a reasonable final time. git-svn-id: https://svn.dealii.org/trunk@18186 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index 77684c6587..10c04418d5 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -1647,7 +1647,7 @@ void BoussinesqFlowProblem::run () old_old_temperature_solution = old_temperature_solution; old_temperature_solution = temperature_solution; } - while (time <= 0); + while (time <= 100); }