Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tiago Peixoto
graph-tool
Commits
be3df2bc
Commit
be3df2bc
authored
Oct 07, 2015
by
Tiago Peixoto
Browse files
Fix bug in Graph.copy() for filtered graphs
parent
d5e5cfa7
Pipeline
#40
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/graph/graph_copy.cc
View file @
be3df2bc
...
...
@@ -145,8 +145,8 @@ struct copy_edge_property_dispatch
for
(
i
=
0
;
i
<
N
;
++
i
)
{
auto
v
=
vertex
(
i
,
src
);
//
if (v == graph_traits<GraphSrc>::null_vertex())
//
continue;
if
(
v
==
graph_traits
<
GraphSrc
>::
null_vertex
())
continue
;
for
(
auto
e
:
out_edges_range
(
v
,
src
))
{
...
...
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