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
f1f3b02f
Commit
f1f3b02f
authored
Oct 11, 2021
by
Baptiste Esteban
Browse files
Solve type issue in satmaxtree
parent
2532578a
Pipeline
#30541
passed with stages
in 14 minutes and 6 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
pylene/src/morpho/satmaxtree.cpp
View file @
f1f3b02f
...
...
@@ -8,7 +8,7 @@ namespace mln::morpho::details
{
auto
[
t
,
nm
]
=
mln
::
morpho
::
tos
(
depth_map
,
{
0
,
0
});
const
int
num_node
=
t
.
parent
.
size
();
const
int
num_node
=
static_cast
<
int
>
(
t
.
parent
.
size
()
)
;
std
::
vector
<
std
::
uint16_t
>
delta
(
num_node
,
0
);
for
(
int
i
=
1
;
i
<
num_node
;
i
++
)
{
...
...
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