Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
graph-tool
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex Henrie
graph-tool
Commits
b395146c
Commit
b395146c
authored
Nov 08, 2020
by
Tiago Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Graph.iter_out/in/all_neighbors()
parent
30bafd49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/graph/graph_python_interface.cc
src/graph/graph_python_interface.cc
+3
-2
No files found.
src/graph/graph_python_interface.cc
View file @
b395146c
...
...
@@ -468,7 +468,7 @@ template <int kind>
python
::
object
get_vertex_iter
(
GraphInterface
&
gi
,
int
v
,
python
::
list
ovprops
)
{
#ifdef HAVE_BOOST_COROUTINE
auto
dispatch
=
[
&
](
auto
&&
vrange
)
auto
dispatch
=
[
&
](
auto
&&
vrange
)
{
auto
yield_dispatch
=
[
&
](
auto
&
yield
)
{
...
...
@@ -477,7 +477,7 @@ python::object get_vertex_iter(GraphInterface& gi, int v, python::list ovprops)
run_action
<>
()(
gi
,
[
&
](
auto
&
g
)
{
for
(
auto
v
:
v
ertices_
range
(
g
))
for
(
auto
v
:
vrange
(
g
))
yield
(
python
::
object
(
v
));
})();
}
...
...
@@ -507,6 +507,7 @@ python::object get_vertex_iter(GraphInterface& gi, int v, python::list ovprops)
};
return
boost
::
python
::
object
(
CoroGenerator
(
yield_dispatch
));
};
switch
(
kind
)
{
case
range_t
::
FULL
:
...
...
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