From: bangerth Date: Mon, 25 Aug 2008 15:59:43 +0000 (+0000) Subject: Fix numbers for 3d. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16947ec6cfd64e579cdf3298217ec8c99e6f09db;p=dealii-svn.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);