From db589662489e76586a53d718791438717dfafea0 Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 7 Dec 2017 19:22:23 -0500 Subject: [PATCH] Remove references to DoFHandler::active_face_iterator. This function was removed in 3df8fcd2122 but was still in the module-level documentation. --- doc/doxygen/headers/iterators.h | 62 ++++----------------------------- 1 file changed, 7 insertions(+), 55 deletions(-) diff --git a/doc/doxygen/headers/iterators.h b/doc/doxygen/headers/iterators.h index 42cd6e6f62..b079888f1c 100644 --- a/doc/doxygen/headers/iterators.h +++ b/doc/doxygen/headers/iterators.h @@ -298,35 +298,11 @@ as the function that generate such objects: +The Triangulation class supports iterating across cell faces with typename +Triangulation::face_iterator, which is the type returned by +Triangulation::begin_face(). - - - - - - - - - - - - - - - - - - - - - - - - -
Classface_iterator typefunction call
Triangulationtypename Triangulation::face_iteratortriangulation.begin_face()
DoFHandlertypename DoFHandler::face_iteratordof_handler.begin_face()
hp::DoFHandlertypename hp::DoFHandler::face_iteratorhp_dof_handler.begin_face()
- - -Likewise, active iterators have the following properties: +Active iterators have the following properties: @@ -354,33 +330,9 @@ Likewise, active iterators have the following properties:
- - - - - - - - - - - - - - - - - - - - - - - - - -
Classface_iterator typefunction call
Triangulationtypename Triangulation::active_face_iteratortriangulation.begin_active_face()
DoFHandlertypename DoFHandler::active_face_iteratordof_handler.begin_active_face()
hp::DoFHandlertypename hp::DoFHandler::active_face_iteratorhp_dof_handler.begin_active_face()
- +The Triangulation class also supports iterating across active cell faces with +typename Triangulation::active_face_iterator, which is the type returned by +Triangulation::begin_active_face(). In addition to these types and calls that act on cells and faces (logical concepts that depend on the dimension: a cell is a quadrilateral in 2d, but -- 2.39.5