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
b965528d
Commit
b965528d
authored
Jan 18, 2009
by
Tiago Peixoto
Browse files
Implement missing ClearEdges()
parent
dd98225a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph/graph.cc
View file @
b965528d
...
...
@@ -88,6 +88,8 @@ void GraphInterface::Clear()
void
GraphInterface
::
ClearEdges
()
{
//
graph_traits
<
multigraph_t
>::
vertex_iterator
v
,
v_end
;
for
(
tie
(
v
,
v_end
)
=
vertices
(
_mg
);
v
!=
v_end
;
++
v
)
clear_vertex
(
*
v
,
_mg
);
}
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