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
Olena
pylene
Commits
0280227f
Commit
0280227f
authored
Jun 30, 2021
by
Baptiste Esteban
Browse files
Add missing 0-faces filling
parent
f74653cd
Pipeline
#28905
passed with stages
in 15 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pylene/src/morpho/component_tree.cpp
View file @
0280227f
...
@@ -66,6 +66,17 @@ namespace mln::morpho
...
@@ -66,6 +66,17 @@ namespace mln::morpho
}
}
}
}
}
}
mln_foreach
(
auto
p
,
res
.
domain
())
{
if
(
p
[
0
]
%
2
==
1
&&
p
[
1
]
%
2
==
1
)
{
for
(
auto
q
:
c4
(
p
))
{
if
(
res
.
domain
().
has
(
q
)
&&
res
(
p
)
<
res
(
q
))
res
(
p
)
=
res
(
q
);
}
}
}
return
res
;
return
res
;
}
}
...
...
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