From: Timo Heister Date: Mon, 24 Jun 2013 13:50:36 +0000 (+0000) Subject: step-50: correct parallel error estimation; breaks solver X-Git-Tag: v8.0.0~240 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=241857eb97ea143586e8c928be6d337615274162;p=dealii.git step-50: correct parallel error estimation; breaks solver git-svn-id: https://svn.dealii.org/trunk@29878 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-50/step-50.cc b/deal.II/examples/step-50/step-50.cc index 937e93846b..2cd69d82b5 100644 --- a/deal.II/examples/step-50/step-50.cc +++ b/deal.II/examples/step-50/step-50.cc @@ -933,9 +933,10 @@ namespace Step50 typename FunctionMap::type(), temp_solution, estimated_error_per_cell); - GridRefinement::refine_and_coarsen_fixed_number (triangulation, - estimated_error_per_cell, - 0.3, 0.03); + parallel::distributed::GridRefinement:: + refine_and_coarsen_fixed_fraction (triangulation, + estimated_error_per_cell, + 0.3, 0.03); triangulation.execute_coarsening_and_refinement (); }