From 5bf0e4c96674cd22185c3e5a8b6a65f215a70129 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 17 Jun 2017 19:43:50 -0600 Subject: [PATCH] Remove a commented out piece of code. The code suggests that one could update the cell DoF cache, but the cache only exists for non-MG DoF indices, whereas the function where the comment resides deals with MG level DoFs. --- source/dofs/dof_handler_policy.cc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/source/dofs/dof_handler_policy.cc b/source/dofs/dof_handler_policy.cc index 31fad1682f..8eca69cace 100644 --- a/source/dofs/dof_handler_policy.cc +++ b/source/dofs/dof_handler_policy.cc @@ -460,13 +460,6 @@ namespace internal next_free_dof = Implementation::distribute_mg_dofs_on_cell (dof_handler, cell, next_free_dof); -// // update the cache used -// // for cell dof indices -// for (typename DoFHandler::level_cell_iterator -// cell = dof_handler.begin(); cell != dof_handler.end(); ++cell) -// if (cell->subdomain_id() != numbers::artificial_subdomain_id) -// cell->update_cell_dof_indices_cache (); - // finally restore the user flags const_cast &>(tria).load_user_flags(user_flags); -- 2.39.5