From acda07bbb947ec3b280ca84f7848907cf4876bb4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 29 Aug 2011 17:37:19 +0000 Subject: [PATCH] Reduce the number of cells being refined. Make it compile with gcc 4.1. git-svn-id: https://svn.dealii.org/trunk@24207 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/step-32.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index 399f3cfae0..f525d4737a 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -886,7 +886,7 @@ class BoussinesqFlowProblem { public: struct Parameters; - BoussinesqFlowProblem (BoussinesqFlowProblem::Parameters & parameters); + BoussinesqFlowProblem (Parameters & parameters); void run (); private: @@ -3704,7 +3704,7 @@ void BoussinesqFlowProblem::refine_mesh (const unsigned int max_grid_level) parallel::distributed::GridRefinement:: refine_and_coarsen_fixed_fraction (triangulation, estimated_error_per_cell, - 0.6, 0.1); + 0.3, 0.1); // for (typename Triangulation::active_cell_iterator // cell = triangulation.begin_active(); -- 2.39.5