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
42a8d6c3
Commit
42a8d6c3
authored
Oct 23, 2007
by
Ale Abdo
Browse files
Fix little bug in commit
a6a80684
A comma (,) was missing before the rewiring option in src/graph-tool
parent
307deccb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph-tool
View file @
42a8d6c3
...
...
@@ -128,7 +128,7 @@ def parse_options(arguments = sys.argv[1:]):
[
"purge-vertices"
,
None
,
"Remove all vertices of the graph which are currently being filtered out, and return to the unfiltered state"
,
{},
[
"graph.PurgeVertices()"
,
"graph.SetVertexFilterProperty('')"
]],
[
"purge-edges"
,
None
,
"Remove all edges of the graph which are currently being filtered out, and return to the unfiltered state"
,
{},
[
"graph.PurgeEdges()"
,
"graph.SetEdgeFilterProperty('')"
]]
{},
[
"graph.PurgeEdges()"
,
"graph.SetEdgeFilterProperty('')"
]]
,
[
"random-rewire"
,
"OPTIONS"
,
"randomly rewire edges. Options are: $OPTIONS_LIST"
,
{
"OPTIONS"
:[(
"correlated"
,(
"string[1]"
,
False
)),(
"uncorrelated"
,(
"string[1]"
,
True
)),
(
"self_loops"
,(
"string"
,
False
)),(
"parallel_edges"
,(
"string"
,
False
)),
...
...
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