Skip to content
Snippets Groups Projects
Commit 7cafc844 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Added leafbegin and leafend.

[[Imported from SVN: r694]]
parent d60f0364
No related branches found
No related tags found
No related merge requests found
......@@ -1076,6 +1076,18 @@ namespace Dune {
return SLevelIterator<cd,dim,dimworld,All_Partition> (*this,level,size(level,cd));
}
template <int dim, int dimworld>
inline typename SGrid<dim,dimworld>::LeafIterator SGrid<dim,dimworld>::leafbegin (int level)
{
return this->template lbegin<0> (level);
}
template <int dim, int dimworld>
inline typename SGrid<dim,dimworld>::LeafIterator SGrid<dim,dimworld>::leafend (int level)
{
return this->template lend<0> (level);
}
template<int dim, int dimworld>
inline int SGrid<dim,dimworld>::size (int level, int codim) const
{
......
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