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

definition of border and front no conforms to the theory paper.

[[Imported from SVN: r2151]]
parent 9c826272
No related branches found
No related tags found
No related merge requests found
......@@ -1701,10 +1701,29 @@ namespace Dune {
return grid.template getRealEntity<0>(e).template subCompressedIndex<cc>(i);
}
//! map new compressed index to old compressed index
int oldcompressed (int newcompressed, int codim, int level) const
{
return newcompressed;
}
//! deliver sizes of IndexSet
int size (int codim, GeometryType type, int level) const
{
return 0;
}
//! deliver all geometry types used in this grid
const std::vector<GeometryType>& geomtypes () const
{
return mytypes;
}
YaspIndex (const GridImp& g) : grid(g) {}
private:
const GridImp& grid;
std::vector<GeometryType> mytypes;
};
......@@ -2098,16 +2117,6 @@ namespace Dune {
return yi;
}
const IndexType& savedleafindex () const
{
return yi;
}
const IndexType& savedlevelindex () const
{
return yi;
}
private:
IndexType yi;
......
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