Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Tiago Peixoto
graph-tool
Commits
d546bb2b
Commit
d546bb2b
authored
Jul 11, 2020
by
Tiago Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
similarity(): fix issue with asymmetric option
parent
cff7450e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/graph/topology/graph_similarity.cc
src/graph/topology/graph_similarity.cc
+1
-1
No files found.
src/graph/topology/graph_similarity.cc
View file @
d546bb2b
...
...
@@ -60,7 +60,7 @@ python::object similarity(GraphInterface& gi1, GraphInterface& gi2,
{
auto
l2
=
uncheck
(
l1
,
label2
);
auto
ew2
=
uncheck
(
ew1
,
weight2
);
auto
ret
=
get_similarity
(
g1
,
g2
,
ew1
,
ew2
,
l1
,
l2
,
asym
,
nor
m
);
auto
ret
=
get_similarity
(
g1
,
g2
,
ew1
,
ew2
,
l1
,
l2
,
norm
,
asy
m
);
s
=
python
::
object
(
ret
);
},
all_graph_views
(),
...
...
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