From 1e0edc68eda7b2f774372b61bec5854762f23e9a Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Thu, 11 Jun 2020 13:10:30 +0200 Subject: [PATCH] Add alias Triangulation::level_cell_iterator --- include/deal.II/grid/tria.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/deal.II/grid/tria.h b/include/deal.II/grid/tria.h index a6346fc2e5..453c104c93 100644 --- a/include/deal.II/grid/tria.h +++ b/include/deal.II/grid/tria.h @@ -1330,6 +1330,12 @@ public: */ using cell_iterator = TriaIterator>; + /** + * The same as above to allow the usage of the "MeshType concept" also + * on the refinement levels. + */ + using level_cell_iterator = cell_iterator; + /** * An alias that is used to identify * @ref GlossActive "active cell iterators". -- 2.39.5