Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
amdis
amdis-core
Commits
f1cef2e6
Commit
f1cef2e6
authored
Jun 10, 2019
by
Praetorius, Simon
Browse files
corrected constructor problem in gcc6
parent
3464bd70
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/UniqueBorderPartitionTest.cpp
View file @
f1cef2e6
...
...
@@ -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
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment