From e241add0c87f7b752a6270551c0eddba7dce4fce Mon Sep 17 00:00:00 2001 From: heister Date: Mon, 24 Jun 2013 13:50:36 +0000 Subject: [PATCH] step-50: correct parallel error estimation; breaks solver git-svn-id: https://svn.dealii.org/trunk@29878 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-50/step-50.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 (); } -- 2.39.5