From: Wolfgang Bangerth Date: Mon, 29 Aug 2011 17:37:19 +0000 (+0000) Subject: Reduce the number of cells being refined. Make it compile with gcc 4.1. X-Git-Tag: v8.0.0~3561 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acda07bbb947ec3b280ca84f7848907cf4876bb4;p=dealii.git 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 --- 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();