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

Added index for vertices. No compress for this index yet.

[[Imported from SVN: r685]]
parent 09f910d0
No related branches found
No related tags found
No related merge requests found
......@@ -79,6 +79,46 @@ namespace Dune {
template <class GridType>
class AdaptiveLeafIndexSet : public DefaultGridIndexSetBase <GridType>
{
// busines as usual
template <class EntityType,int enCodim, int codim>
struct IndexWrapper
{
static int index (EntityType & en , const IndexArray<int> & leafIndex, int num )
{
// this index set works only for codim = 0 at the moment
assert(codim == 0);
// check if we have index for given entity
assert(leafIndex[en.global_index()] >= 0);
return leafIndex[en.global_index()];
}
};
//! if codim > codim of entity use subIndex
template <class EntityType>
struct IndexWrapper<EntityType,0,2>
{
static int index (EntityType & en , const IndexArray<int> & leafIndex, int num )
{
return en.template subIndex<2> (num);
}
};
template <class EntityType>
struct IndexWrapper<EntityType,0,3>
{
static int index (EntityType & en , const IndexArray<int> & leafIndex, int num )
{
return en.template subIndex<3> (num);
}
};
//******************************************************************
// my type, to be revised
enum { myType = 2 };
enum INDEXSTATE { NEW, USED, UNUSED };
// the mapping of the global to leaf index
......@@ -105,6 +145,7 @@ namespace Dune {
// size of old index set
int oldSize_;
// true if all entities that we use are marked as USED
bool marked_;
public:
......@@ -241,13 +282,16 @@ namespace Dune {
template <int codim, class EntityType>
int index (EntityType & en, int num) const
{
// this index set works only for codim = 0 at the moment
assert(codim == 0);
return IndexWrapper<EntityType,EntityType::codimension,codim>::index(en,leafIndex_,num);
/*
// this index set works only for codim = 0 at the moment
assert(codim == 0);
// check if we have index for given entity
assert(leafIndex_[en.global_index()] >= 0);
// check if we have index for given entity
assert(leafIndex_[en.global_index()] >= 0);
return leafIndex_[en.global_index()];
return leafIndex_[en.global_index()];
*/
}
//! return size of grid entities per level and codim
......@@ -461,6 +505,14 @@ namespace Dune {
// read/write from/to xdr stream
bool processXdr(XDR *xdrs)
{
int type = myType;
xdr_int ( xdrs, &type );
if(type != myType)
{
std::cerr << "\nERROR: AdaptiveLeafIndexSet: wrong type choosen! \n\n";
assert(type == myType);
}
xdr_int ( xdrs, &nextFreeIndex_ );
xdr_int ( xdrs, &actSize_ );
leafIndex_.processXdr(xdrs);
......
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