From: heister Date: Fri, 3 Jan 2014 13:52:50 +0000 (+0000) Subject: remove superfluous boundary logic X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce507b8f35065bb869ba90a8d24b4a9edc849205;p=dealii-svn.git remove superfluous boundary logic git-svn-id: https://svn.dealii.org/trunk@32155 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/step-39.cc b/tests/mpi/step-39.cc index 9736e2e4e8..701887f007 100644 --- a/tests/mpi/step-39.cc +++ b/tests/mpi/step-39.cc @@ -209,8 +209,6 @@ namespace Step39 dinfo.value(0) += penalty * (boundary_values[k] - uh[k]) * (boundary_values[k] - uh[k]) * fe.JxW(k); dinfo.value(0) = std::sqrt(dinfo.value(0)); - if (!dinfo.cell->is_locally_owned()) - dinfo.value(0) = 0.0; }