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
311fc510
Commit
311fc510
authored
Dec 31, 2011
by
Tiago Peixoto
Browse files
Whitespace fixup
parent
a5bcb6b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/boost-workaround/boost/graph/graphml.hpp
View file @
311fc510
...
...
@@ -371,7 +371,7 @@ write_graphml(std::ostream& out, const Graph& g, VertexIndexMap vertex_index,
has_vertex_ids
=
true
;
continue
;
}
if
(
i
->
first
==
"_graphml_edge_id"
)
{
has_edge_ids
=
true
;
...
...
@@ -472,13 +472,13 @@ write_graphml(std::ostream& out, const Graph& g, VertexIndexMap vertex_index,
else
out
<<
"e"
<<
edge_count
;
edge_count
++
;
out
<<
"
\"
source=
\"
"
;
if
(
has_vertex_ids
)
out
<<
protect_xml_string
(
get
(
"_graphml_vertex_id"
,
dp
,
source
(
*
e
,
g
)));
else
out
<<
"n"
<<
get
(
vertex_index
,
source
(
*
e
,
g
));
out
<<
"n"
<<
get
(
vertex_index
,
source
(
*
e
,
g
));
out
<<
"
\"
target=
\"
"
;
if
(
has_vertex_ids
)
out
<<
protect_xml_string
(
get
(
"_graphml_vertex_id"
,
dp
,
...
...
src/graph/layout/graph_arf.cc
View file @
311fc510
...
...
@@ -51,5 +51,3 @@ void export_arf()
{
python
::
def
(
"arf_layout"
,
&
arf_layout
);
}
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