From 327aca0c6709efe5b269c247d86d0c855a90cc9c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 13 Jun 1998 12:30:10 +0000 Subject: [PATCH] Move some code around to make kdoc more happy. git-svn-id: https://svn.dealii.org/trunk@405 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/grid/tria.h | 40 +++++++++++++++-------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/deal.II/deal.II/include/grid/tria.h b/deal.II/deal.II/include/grid/tria.h index 59fcdb9157..a99aa6aeeb 100644 --- a/deal.II/deal.II/include/grid/tria.h +++ b/deal.II/deal.II/include/grid/tria.h @@ -37,6 +37,27 @@ class ostream; +/** + * Declare some symbolic names for mesh smoothing algorithms. The meaning of + * these flags is documented in the #Triangulation# class. + */ +enum MeshSmoothing { + none = 0x0, + limit_level_difference_at_vertices = 0x1, + eliminate_unrefined_islands = 0x2, + + eliminate_refined_islands = 0x4, + + smoothing_on_refinement = (limit_level_difference_at_vertices | + eliminate_unrefined_islands), + smoothing_on_coarsening = (eliminate_refined_islands), + maximum_smoothing = 0xffff +}; + + + + + /** * General template for information belonging to one level of a multilevel * hierarchy of a triangulation. This template is only declared to allow @@ -539,31 +560,12 @@ class TriaDimensionInfo<2> { -/** - * Declare some symbolic names for mesh smoothing algorithms. The meaning of - * these flags is documented in the #Triangulation# class. - */ -enum MeshSmoothing { - none = 0x0, - limit_level_difference_at_vertices = 0x1, - eliminate_unrefined_islands = 0x2, - - eliminate_refined_islands = 0x4, - - smoothing_on_refinement = (limit_level_difference_at_vertices | - eliminate_unrefined_islands), - smoothing_on_coarsening = (eliminate_refined_islands), - maximum_smoothing = 0xffff -}; - - /*------------------------------------------------------------------------*/ - /** * #Triangulation#s denote a hierarchy of levels of elements which together * form a region in #dim# spatial dimensions. -- 2.39.5