From fd6f2c96680a7f7b581e8dcb7355a4799b13c484 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 26 Apr 2006 15:08:26 +0000 Subject: [PATCH] Add necessary offsets field. git-svn-id: https://svn.dealii.org/trunk@12907 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/hp_dof_handler.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/deal.II/deal.II/include/dofs/hp_dof_handler.h b/deal.II/deal.II/include/dofs/hp_dof_handler.h index 53890e048d..6b1a7acc35 100644 --- a/deal.II/deal.II/include/dofs/hp_dof_handler.h +++ b/deal.II/deal.II/include/dofs/hp_dof_handler.h @@ -1000,9 +1000,28 @@ namespace hp * Array to store the indices * for degrees of freedom * located at vertices. + * + * The format used here, in the + * form of a linked list, is + * the same as used for the + * arrays used in the + * hp::DoFLevel + * hierarchy. Starting indices + * into this array are provided + * by the vertex_dofs_offsets + * field. */ std::vector vertex_dofs; + /** + * For each vertex in the + * triangulation, store the + * offset within the + * vertex_dofs array where the + * dofs for this vertex start. + */ + std::vector vertex_dofs_offsets; + /** * Array to store the * information, if a cell on -- 2.39.5