From: David Wells Date: Fri, 8 Dec 2017 00:22:23 +0000 (-0500) Subject: Remove references to DoFHandler::active_face_iterator. X-Git-Tag: v9.0.0-rc1~677^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db589662489e76586a53d718791438717dfafea0;p=dealii.git Remove references to DoFHandler::active_face_iterator. This function was removed in 3df8fcd2122 but was still in the module-level documentation. --- 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