From: fsonner Date: Sat, 25 Apr 2015 14:50:17 +0000 (+0200) Subject: Remove is_active check in dof renumbering X-Git-Tag: v8.3.0-rc1~204^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c0761a293dcc3fa58182826d015147dde65ed7c;p=dealii.git Remove is_active check in dof renumbering --- diff --git a/source/dofs/dof_renumbering.cc b/source/dofs/dof_renumbering.cc index e23fc23f9d..dbabbd6c3d 100644 --- a/source/dofs/dof_renumbering.cc +++ b/source/dofs/dof_renumbering.cc @@ -684,7 +684,7 @@ namespace DoFRenumbering { //we are dealing with active dofs, skip the loop if not locally // owned: - if (!cell->active() || !cell->is_locally_owned()) + if (!cell->is_locally_owned()) continue; } // on each cell: get dof indices @@ -981,7 +981,7 @@ namespace DoFRenumbering { //we are dealing with active dofs, skip the loop if not locally // owned: - if (!cell->active() || !cell->is_locally_owned()) + if (!cell->is_locally_owned()) continue; }