From 0d638bcc1c7b42094205741800a75b26c4b52ba1 Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 20 Jan 2016 13:46:56 -0500 Subject: [PATCH] Prefer 'MeshType' to 'Container' and 'GridClass'. These things are already described as meshes in the documentation and there is already a class named Mesh (buried in grid_reordering_internal.h), so the best name for the concept is MeshType. --- doc/doxygen/headers/concepts.h | 43 ++-- doc/doxygen/headers/iterators.h | 16 +- include/deal.II/dofs/dof_tools.h | 2 +- include/deal.II/grid/grid_generator.h | 28 +-- include/deal.II/grid/grid_tools.h | 240 +++++++++++----------- include/deal.II/grid/intergrid_map.h | 24 +-- include/deal.II/grid/tria.h | 2 +- source/grid/grid_generator.cc | 28 +-- source/grid/grid_tools.cc | 274 +++++++++++++------------- source/grid/intergrid_map.cc | 56 +++--- 10 files changed, 352 insertions(+), 361 deletions(-) diff --git a/doc/doxygen/headers/concepts.h b/doc/doxygen/headers/concepts.h index 01a94ad1db..86f13ba994 100644 --- a/doc/doxygen/headers/concepts.h +++ b/doc/doxygen/headers/concepts.h @@ -52,28 +52,6 @@ * *
* - *
@anchor ConceptContainerType ContainerType
- * - *
- - * There are several algorithms (e.g., - * GridTools::find_active_cell_around_point) in deal.II that can operate on - * either a Triangulation or a DoFHandler, as both classes may be considered - * to be collections of cells: see the @ref GlossMeshAsAContainer - * "glossary entry" for a further discussion of this idea. %Functions that may - * be called with either class indicate this by accepting a template parameter - * like - * @code - * template