From: hartmann Date: Tue, 1 Jun 2004 10:42:04 +0000 (+0000) Subject: Three fixes. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8022ffe804077e31f84745de3210f6492715e7d2;p=dealii-svn.git Three fixes. git-svn-id: https://svn.dealii.org/trunk@9348 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/grid/filtered_iterator.h b/deal.II/deal.II/include/grid/filtered_iterator.h index 05cd501e7c..d870b99416 100644 --- a/deal.II/deal.II/include/grid/filtered_iterator.h +++ b/deal.II/deal.II/include/grid/filtered_iterator.h @@ -320,7 +320,7 @@ namespace IteratorFilters * begin.set_to_next_positive(tria.begin_active()); * end = tria.end(); * n_flagged_cells = std::distance (begin, end); - * @verbatim + * @endverbatim * Note that by the @p set_to_next_positive call the first cell with * a set user flag was assigned to the @p begin iterator. For the * @{end} iterator, no such call was necessary, since the past-the-end @@ -333,7 +333,7 @@ namespace IteratorFilters * std::distance (FI(IteratorFilters::UserFlagSet()) * .set_to_next_positive(tria.begin_active()), * FI(IteratorFilters::UserFlagSet(), tria.end())); - * @verbatim + * @endverbatim * It relies on the fact that if we create an unnamed filtered * iterator with a given predicate but no iterator value and assign it * the next positive value with respect to this predicate, it returns @@ -349,7 +349,7 @@ namespace IteratorFilters * FilteredIterator::active_cell_iterator> * cell (FilteredIterator::SubdomainEqualTo(3)), * endc (FilteredIterator::SubdomainEqualTo(3), tria.end()); - * cell.set_to_next_positive (tria.begin_active()); + * cell.set_to_next_positive (tria.begin_active(3)); * for (; cell!=endc; ++cell) * assemble_local_matrix (cell); * @endverbatim