Skip to content
Snippets Groups Projects
Commit f1cef2e6 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

corrected constructor problem in gcc6

parent 3464bd70
No related branches found
No related tags found
1 merge request!68unique border partition DataHandle
......@@ -28,9 +28,9 @@ int main(int argc, char** argv)
{
Environment env(argc, argv);
auto grid1 = Dune::YaspGrid<2>({1.0, 1.0}, {8,8}, 0, 0); // no overlap
auto grid2 = Dune::YaspGrid<2>({1.0, 1.0}, {8,8}, 0, 1); // overlap = 1
auto grid3 = Dune::YaspGrid<3>({1.0, 1.0, 1.0}, {8,8,8}, 0, 1); // overlap = 1
Dune::YaspGrid<2> grid1({1.0, 1.0}, {8,8}, 0, 0); // no overlap
Dune::YaspGrid<2> grid2({1.0, 1.0}, {8,8}, 0, 1); // overlap = 1
Dune::YaspGrid<3> grid3({1.0, 1.0, 1.0}, {8,8,8}, 0, 1); // overlap = 1
test(grid1.leafGridView());
test(grid2.leafGridView());
......
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