From: Daniel Arndt Date: Wed, 25 Apr 2018 11:12:35 +0000 (+0200) Subject: Replace DofHandler by DoFHandler X-Git-Tag: v9.0.0-rc1~116^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6327%2Fhead;p=dealii.git Replace DofHandler by DoFHandler --- diff --git a/doc/news/8.0.0-vs-8.1.0.h b/doc/news/8.0.0-vs-8.1.0.h index 28d7af91c8..6219a97059 100644 --- a/doc/news/8.0.0-vs-8.1.0.h +++ b/doc/news/8.0.0-vs-8.1.0.h @@ -497,7 +497,7 @@ inconvenience this causes.
  • - Fixed: DoFTools::extract_locally_*_dofs now instantiated for hp::DofHandler. + Fixed: DoFTools::extract_locally_*_dofs now instantiated for hp::DoFHandler.
    (Jean-Paul Pelteret, 2013/09/11)
  • diff --git a/include/deal.II/hp/fe_values.h b/include/deal.II/hp/fe_values.h index b1562a8435..f9beea5dad 100644 --- a/include/deal.II/hp/fe_values.h +++ b/include/deal.II/hp/fe_values.h @@ -279,7 +279,7 @@ namespace hp * passed to the constructor of this class with index given by * cell-@>active_fe_index(). Consequently, the * hp::FECollection argument given to this object should really be the - * same as that used in the construction of the hp::DofHandler associated + * same as that used in the construction of the hp::DoFHandler associated * with the present cell. On the other hand, if a value is given for this * argument, it overrides the choice of * cell-@>active_fe_index(). @@ -414,7 +414,7 @@ namespace hp * passed to the constructor of this class with index given by * cell-@>active_fe_index(). Consequently, the * hp::FECollection argument given to this object should really be the - * same as that used in the construction of the hp::DofHandler associated + * same as that used in the construction of the hp::DoFHandler associated * with the present cell. On the other hand, if a value is given for this * argument, it overrides the choice of * cell-@>active_fe_index(). diff --git a/source/grid/grid_tools_dof_handlers.cc b/source/grid/grid_tools_dof_handlers.cc index 516327a040..a5abaef4cb 100644 --- a/source/grid/grid_tools_dof_handlers.cc +++ b/source/grid/grid_tools_dof_handlers.cc @@ -1247,7 +1247,7 @@ next_cell: Assert (local_triangulation.n_active_cells() == uniform_cells.size(), ExcInternalError()); local_triangulation.clear_user_flags (); unsigned int index=0; - // Create a map between cells of class DofHandler into class Triangulation + // Create a map between cells of class DoFHandler into class Triangulation std::map::cell_iterator, typename Container::cell_iterator> patch_to_global_tria_map_tmp; for (typename Triangulation::cell_iterator coarse_cell = local_triangulation.begin();