Code

fix
authortgdwyer <tgdwyer@users.sourceforge.net>
Mon, 13 Feb 2006 05:07:27 +0000 (05:07 +0000)
committertgdwyer <tgdwyer@users.sourceforge.net>
Mon, 13 Feb 2006 05:07:27 +0000 (05:07 +0000)
src/graphlayout/graphlayout.cpp

index 480fe5f95d516daedf026a0f2159d5b8da0dc4d6..7ece03600b62fc6e9f1d91a346d4f0a1294d4e02 100644 (file)
@@ -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));