Skip to content
Snippets Groups Projects
Commit eb4c3760 authored by Peter Bastian's avatar Peter Bastian
Browse files

added dummy implementation of the three new size methods

[[Imported from SVN: r1958]]
parent 0dbdd809
No related branches found
No related tags found
No related merge requests found
......@@ -221,6 +221,28 @@ namespace Dune {
*/
int size (int level, int codim) const;
//! number of leaf entities per codim in this process
int size (int codim) const
{
DUNE_THROW(NotImplemented, "not implemented");
return 0;
}
//! number of entities per level, codim and geometry type in this process
int size (int level, int codim, GeometryType type) const
{
DUNE_THROW(NotImplemented, "not implemented");
return 0;
}
//! number of leaf entities per codim and geometry type in this process
int size (int codim, GeometryType type) const
{
DUNE_THROW(NotImplemented, "not implemented");
return 0;
}
#ifdef UGGRID_WITH_INDEX_SETS
int global_size (int codim) const DUNE_DEPRECATED { return hierarchicIndexSet().size(maxlevel(),codim); }
#else
......
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