Skip to content
Snippets Groups Projects
Commit c0dd76ad authored by Timo Koch's avatar Timo Koch
Browse files

[test][parallelgrid] Enable serial grid checks - they compile and run again

parent 85b2a61a
No related branches found
No related tags found
No related merge requests found
...@@ -88,31 +88,31 @@ void checkSerial(GridType& grid, int mxl = 2) ...@@ -88,31 +88,31 @@ void checkSerial(GridType& grid, int mxl = 2)
{ {
// be careful, each global refine create 8 x maxlevel elements // be careful, each global refine create 8 x maxlevel elements
std::cout << " CHECKING: Macro" << std::endl; std::cout << " CHECKING: Macro" << std::endl;
//gridcheck(grid); gridcheck(grid);
std::cout << " CHECKING: Macro-intersections" << std::endl; std::cout << " CHECKING: Macro-intersections" << std::endl;
//checkIntersectionIterator(grid); checkIntersectionIterator(grid);
for(int i=0; i<mxl; i++) for(int i=0; i<mxl; i++)
{ {
grid.globalRefine( 1 );//DGFGridInfo<GridType> :: refineStepsForHalf() ); grid.globalRefine( 1 );//DGFGridInfo<GridType> :: refineStepsForHalf() );
std::cout << " CHECKING: Refined" << std::endl; std::cout << " CHECKING: Refined" << std::endl;
//gridcheck(grid); gridcheck(grid);
std::cout << " CHECKING: intersections" << std::endl; std::cout << " CHECKING: intersections" << std::endl;
//checkIntersectionIterator(grid); checkIntersectionIterator(grid);
} }
// check also non-conform grids // check also non-conform grids
//makeNonConformingGrid(grid,0,1); makeNonConformingGrid(grid,0,1);
//std::cout << " CHECKING: non-conform" << std::endl; //std::cout << " CHECKING: non-conform" << std::endl;
//gridcheck(grid); gridcheck(grid);
// check the method geometryInFather() // check the method geometryInFather()
//std::cout << " CHECKING: geometry in father" << std::endl; std::cout << " CHECKING: geometry in father" << std::endl;
//checkGeometryInFather(grid); checkGeometryInFather(grid);
// check the intersection iterator and the geometries it returns // check the intersection iterator and the geometries it returns
//std::cout << " CHECKING: intersections" << std::endl; std::cout << " CHECKING: intersections" << std::endl;
//checkIntersectionIterator(grid); checkIntersectionIterator(grid);
std::cout << std::endl << std::endl; std::cout << std::endl << 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