Skip to content
Snippets Groups Projects
Commit d6d8c1e4 authored by Oliver Sander's avatar Oliver Sander
Browse files

lbegin and lend with PartitionIteratorType added

[[Imported from SVN: r1067]]
parent 3b364366
No related branches found
No related tags found
No related merge requests found
......@@ -191,6 +191,14 @@ namespace Dune {
template<int codim>
UGGridLevelIterator<codim,dim,dimworld, All_Partition> lend (int level) const;
//! Iterator to first entity of given codim on level
template<int codim, PartitionIteratorType PiType>
UGGridLevelIterator<codim,dim,dimworld, PiType> lbegin (int level) const;
//! one past the end on this level
template<int codim, PartitionIteratorType PiType>
UGGridLevelIterator<codim,dim,dimworld, PiType> lend (int level) const;
/** \brief Create leaf iterator (currently only a level iterator)
* \todo Replace this by a true leaf iterator */
LeafIterator leafbegin (int level) const {return lbegin<0>(level);}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment