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

preliminary implementation of partitionType()

[[Imported from SVN: r1812]]
parent 5440e0fb
No related branches found
No related tags found
No related merge requests found
......@@ -78,6 +78,10 @@ namespace Dune {
int globalIndex() const { return index(); }
#endif
/** \brief The partition type for parallel computing
* \todo So far it always returns InteriorEntity */
PartitionType partitionType () const { return InteriorEntity; }
/*! Intra-element access to entities of codimension cc > codim. Return number of entities
with codimension cc.
*/
......@@ -196,8 +200,11 @@ namespace Dune {
int globalIndex() const { return index(); }
#endif
/** \brief The partition type for parallel computing
* \todo So far it always returns InteriorEntity */
PartitionType partitionType () const { return InteriorEntity; }
//! Geometry of this entity
//const UGGridGeometry<dim,dim,GridImp>& geometry () const;
const Geometry& geometry () const;
/** \brief Return the number of subentities of codimension cc.
......
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