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

added memUsage method

git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@951 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent ea748acf
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ public :
is.read ( ((char *) &_s[i]), sizeof(int) );
}
}
private:
T _s[length]; // the stack
int _f; // actual position in stack
......@@ -139,6 +139,9 @@ public:
// remove all indices that are not used (if possible)
void compress ();
// return size of used memory in bytes
size_t memUsage () const ;
private:
// no copy constructor allowed
ALUGridIndexStack( const ALUGridIndexStack<T,length> & s);
......@@ -342,6 +345,18 @@ compress()
}
}
template <class T, int length>
inline size_t ALUGridIndexStack<T,length>::
memUsage () const
{
size_t mySize = sizeof(ALUGridIndexStack<T,length>);
size_t stackSize = sizeof(StackType);
if(stack_) mySize += stackSize;
mySize += stackSize * fullStackList_.size();
mySize += stackSize * emptyStackList_.size();
return mySize;
}
// define index stack tpye for all grids
enum { lengthOfFiniteStack = 262144 }; // 2^18
typedef ALUGridIndexStack<int,lengthOfFiniteStack> IndexManagerType;
......
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