From aed8d9211ee0512fa7e2828a38efedce18ba192c Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 22 Nov 2015 19:49:30 -0500 Subject: [PATCH] Update references to the MGDoFHandler class. This class was removed in the 8.0 release. I updated the example to show how one can get the same result with a DoFHandler (i.e., call distribute_mg_dofs). --- include/deal.II/dofs/block_info.h | 6 ++++-- include/deal.II/dofs/dof_accessor.h | 9 ++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/include/deal.II/dofs/block_info.h b/include/deal.II/dofs/block_info.h index da34f69f06..a25b9013b4 100644 --- a/include/deal.II/dofs/block_info.h +++ b/include/deal.II/dofs/block_info.h @@ -64,8 +64,10 @@ namespace hp * The most common usage for this object is initializing vectors as in the * following code: * - * MGDofHandler dof_handler(triangulation); - * dof_handler.distribute_dofs(fesystem); + * + * DoFHandler dof_handler(triangulation); + * dof_handler.distribute_dofs(fe_system); + * dof_handler.distribute_mg_dofs(fe_system); * DoFRenumbering::block_wise(dof_handler); * * BlockVector solution(dof_handler.block_info().global()); diff --git a/include/deal.II/dofs/dof_accessor.h b/include/deal.II/dofs/dof_accessor.h index 07ed50a94b..fa31364404 100644 --- a/include/deal.II/dofs/dof_accessor.h +++ b/include/deal.II/dofs/dof_accessor.h @@ -122,11 +122,10 @@ namespace internal /** - * A class that gives access to the degrees of freedom stored in a DoFHandler, - * MGSoDHandler, or hp::DoFHandler object. Accessors are used to, access the - * data that pertains to edges, faces, and cells of a triangulation. The - * concept is explained in more detail in connection to - * @ref Iterators. + * A class that gives access to the degrees of freedom stored in a DoFHandler + * or hp::DoFHandler object. Accessors are used to access the data that + * pertains to edges, faces, and cells of a triangulation. The concept is + * explained in more detail in connection to @ref Iterators. * * This class follows mainly the route laid out by the accessor library * declared in the triangulation library (TriaAccessor). It enables the user -- 2.39.5