summaryrefslogtreecommitdiffstats
path: root/src/graphlayout/graphlayout.cpp
diff options
context:
space:
mode:
authorTim Dwyer <tgdwyer@gmail.com>2006-02-13 05:07:27 +0000
committertgdwyer <tgdwyer@users.sourceforge.net>2006-02-13 05:07:27 +0000
commit09183b13335249c2e6137eb5b0b2538f2b1d3809 (patch)
treec37533a7b4713d4498dd56b9b0df1d1b6582a8f8 /src/graphlayout/graphlayout.cpp
parentifdefs (diff)
downloadinkscape-09183b13335249c2e6137eb5b0b2538f2b1d3809.tar.gz
inkscape-09183b13335249c2e6137eb5b0b2538f2b1d3809.zip
fix
(bzr r127)
Diffstat (limited to 'src/graphlayout/graphlayout.cpp')
-rw-r--r--src/graphlayout/graphlayout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphlayout/graphlayout.cpp b/src/graphlayout/graphlayout.cpp
index 480fe5f95..7ece03600 100644
--- a/src/graphlayout/graphlayout.cpp
+++ b/src/graphlayout/graphlayout.cpp
@@ -125,7 +125,7 @@ void graphlayout(GSList const *const items) {
std::cout<<"Graph has |V|="<<num_vertices(g)<<" Width="<<width<<" Height="<<height<<std::endl;
PositionVec position_vec(num_vertices(g));
PositionMap position(position_vec.begin(), get(vertex_index, g));
- write_graphviz(std::cout, g, make_label_writer<std::vector<std::string>>(labels));
+ //write_graphviz(std::cout, g, make_label_writer<std::vector<std::string>>(labels));
circle_graph_layout(g, position, width/2.0);
kamada_kawai_spring_layout(g, position, weightmap, side_length(width));