From: Wolfgang Bangerth Date: Mon, 25 Aug 2008 15:59:43 +0000 (+0000) Subject: Fix numbers for 3d. X-Git-Tag: v8.0.0~8781 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aeb2e1e5c68cb78019a1ba789552362c15dd3bfa;p=dealii.git Fix numbers for 3d. git-svn-id: https://svn.dealii.org/trunk@16663 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-31/step-31.cc b/deal.II/examples/step-31/step-31.cc index 326c601d95..f2303a4743 100644 --- a/deal.II/examples/step-31/step-31.cc +++ b/deal.II/examples/step-31/step-31.cc @@ -2088,8 +2088,8 @@ void BoussinesqFlowProblem::refine_mesh (const unsigned int max_grid_level) template void BoussinesqFlowProblem::run () { - const unsigned int initial_refinement = (dim == 2 ? 4 : 3); - const unsigned int n_pre_refinement_steps = 4; + const unsigned int initial_refinement = (dim == 2 ? 4 : 2); + const unsigned int n_pre_refinement_steps = (dim == 2 ? 4 : 3); GridGenerator::hyper_cube (triangulation);