From 4a93ec686502255ef024af32ce6d8cc457960bf6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 15 Oct 2018 15:24:20 -0600 Subject: [PATCH] Update comments of two functions. These functions were not individually documented. Fix this and make clear what they do. --- include/deal.II/hp/dof_handler.h | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/include/deal.II/hp/dof_handler.h b/include/deal.II/hp/dof_handler.h index 6560d5646f..64f0d5360a 100644 --- a/include/deal.II/hp/dof_handler.h +++ b/include/deal.II/hp/dof_handler.h @@ -928,14 +928,23 @@ namespace hp create_active_fe_table(); /** - * Functions that will be triggered through signals whenever the - * triangulation is modified. + * A function that will be triggered through a triangulation + * signal just before the triangulation is modified. * - * Here they are used to administrate the active_fe_fields during the - * spatial refinement. + * The function that stores the active_fe_flags of all cells that will + * be refined or coarsened before the refinement happens, so that + * they can be set again after refinement. */ void pre_refinement_action(); + + /** + * A function that will be triggered through a triangulation + * signal just after the triangulation is modified. + * + * The function that restores the active_fe_flags of all cells that + * were refined. + */ void post_refinement_action(); -- 2.39.5