From: Wolfgang Bangerth Date: Tue, 22 Feb 2011 03:49:02 +0000 (+0000) Subject: No need to estimate the error in output_results if we're not going to do X-Git-Tag: v8.0.0~4296 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1811f362ba916584eedb257f44d75d514330e038;p=dealii.git No need to estimate the error in output_results if we're not going to do anything with it. git-svn-id: https://svn.dealii.org/trunk@23406 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 ec9b66fe23..cd0bee28dc 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -3206,13 +3206,6 @@ template void BoussinesqFlowProblem::output_results () { computing_timer.enter_section ("Postprocessing"); - Vector estimated_error_per_cell (triangulation.n_active_cells()); - - KellyErrorEstimator::estimate (temperature_dof_handler, - QGauss(temperature_degree+1), - typename FunctionMap::type(), - temperature_solution, - estimated_error_per_cell); const FESystem joint_fe (stokes_fe, 1, temperature_fe, 1);