From 16947ec6cfd64e579cdf3298217ec8c99e6f09db Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 25 Aug 2008 15:59:43 +0000 Subject: [PATCH] Fix numbers for 3d. git-svn-id: https://svn.dealii.org/trunk@16663 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-31/step-31.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.5