Skip to content
Snippets Groups Projects
Commit 6fdea7c0 authored by Robert K's avatar Robert K
Browse files

[cleanup][test] Added output of size of Ids

parent 65776003
No related branches found
No related tags found
No related merge requests found
......@@ -102,6 +102,8 @@ void checkCapabilities(const Grid& grid)
#endif // #if !DUNE_VERSION_NEWER(DUNE_GRID,2,5)
std::cout << " LeafIntersection = " << sizeof(typename Grid::Traits::LeafIntersection) << std::endl;
std::cout << " LevelIntersection = " << sizeof(typename Grid::Traits::LevelIntersection) << std::endl;
std::cout << " GlobalId = " << sizeof(typename Grid::GlobalIdSet::IdType) << std::endl;
std::cout << " LocalId = " << sizeof(typename Grid::LocalIdSet::IdType) << std::endl;
std::cout << std::endl;
}
......
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