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
5f7002dd
Commit
5f7002dd
authored
Nov 22, 2015
by
Tiago Peixoto
Browse files
Trivial simplification in adj_list<>::reindex_edges()
parent
95ed1e9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph/graph_adjacency.hh
View file @
5f7002dd
...
...
@@ -268,7 +268,7 @@ public:
for
(
size_t
i
=
0
;
i
<
_out_edges
.
size
();
++
i
)
{
auto
&
oes
=
_out_edges
[
i
];
for
(
size_t
j
=
0
;
j
<
_out_edges
[
i
]
.
size
();
++
j
)
for
(
size_t
j
=
0
;
j
<
oes
.
size
();
++
j
)
{
auto
&
oe
=
oes
[
j
];
Vertex
v
=
oe
.
first
;
...
...
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