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

added check for methods ghostSize(int) and overlapSize(int)

[[Imported from SVN: r3680]]
parent 6a0deaca
No related branches found
No related tags found
No related merge requests found
......@@ -2,12 +2,12 @@
// vi: set et ts=4 sw=2 sts=2:
// $Id$
/*
/**
Implements a generic grid check
TODO:
- check return types
\todo check return types
*/
......@@ -471,9 +471,14 @@ struct GridInterface
// number of leaf entities per codim and geometry type in this process
g.size(0, Dune::cube);
// Check overlap and ghost size on level 0
g.overlapSize(0,0);
g.ghostSize(0,0);
// Check overlap and ghost size on the leaf level
g.overlapSize(0);
g.ghostSize(0);
// adaption
EntityPointer ept = g.template leafbegin<0>();
g.mark(100, ept);
......
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