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
hyteg
hyteg
Commits
6dec1dcd
Commit
6dec1dcd
authored
May 17, 2022
by
Benjamin Mann
Browse files
small fix
parent
9b75cd80
Pipeline
#39964
failed with stages
in 30 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/hyteg/adaptiverefinement/mesh.cpp
View file @
6dec1dcd
...
...
@@ -343,7 +343,7 @@ std::shared_ptr< PrimitiveStorage > K_Mesh< K_Simplex >::make_localPrimitives( s
for
(
auto
&
vtxIdx
:
v
)
{
auto
vtx
=
vtxs
[
vtxIdx
];
auto
&
vtx
=
vtxs
[
vtxIdx
];
if
(
edge
.
isLocal
()
&&
!
vtx
.
isLocal
()
)
{
...
...
@@ -366,7 +366,7 @@ std::shared_ptr< PrimitiveStorage > K_Mesh< K_Simplex >::make_localPrimitives( s
for
(
auto
&
vtxIdx
:
v
)
{
auto
vtx
=
vtxs
[
vtxIdx
];
auto
&
vtx
=
vtxs
[
vtxIdx
];
if
(
face
.
isLocal
()
&&
!
vtx
.
isLocal
()
)
{
...
...
@@ -406,7 +406,7 @@ std::shared_ptr< PrimitiveStorage > K_Mesh< K_Simplex >::make_localPrimitives( s
for
(
auto
&
vtxIdx
:
v
)
{
auto
vtx
=
vtxs
[
vtxIdx
];
auto
&
vtx
=
vtxs
[
vtxIdx
];
if
(
cell
.
isLocal
()
&&
!
vtx
.
isLocal
()
)
{
...
...
Write
Preview
Markdown
is supported
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