I am writing a software that's constructing a graph.
In its most basic form, the graph will be described in a file like the string passed to agmemread in the following segment. This is the code that constructs and saves it as a PNG:

#include <gvc.h>

int main()
{
    GVC_t* gvc;
    Agraph_t* g;    

    gvc=gvContext();
    g=agmemread
    (
        "digraph g"\
        "{"\
        "   1->2;"\
        "   2->3;"\
        "   2->13;"\
        "   3->4;"\
        "   4->5;"\
        "   4->6;"\
        "   5->8;"\
        "   6->7;"\
        "   7->8;"\
        "   8->9;"\
        "   8->10;"\
        "   9->23;"\
        "   10->11;"\
        "   10->12;"\
        "   11->23;"\
        "   12->23;"\
        "   13->14;"\
        "   14->15;"\
        "   15->16;"\
        "   15->19;"\
        "   16->17;"\
        "   17->18;"\
        "   18->21;"\
        "   19->20;"\
        "   20->21;"\
        "   21->22;"\
        "   22->23;"\
        "}"
    );

    gvLayout(gvc,g,"dot");
    gvRenderFilename(gvc,g,"png","g_gen.png");

    gvFreeLayout(gvc, g); 
    agclose(g); 
    gvFreeContext(gvc);

    return 0;
}

My problem is that the graph, saved in "g_gen.png" (from the code) looks like this: http://i56.tinypic.com/25hk3de.png

And I want it to resemble this structure (drawn with DIA for Windows):
http://i56.tinypic.com/t070br.png

I mean the placement of the nodes. In particular:

  1. Splits (like 2,4,8,10,15) should be in the middle above their subtrees
  2. Junctions (like 8,23,21) should be in the middle below their subtrees
  3. Branches should be leveled (5,6,15 are on a single level; 9,10,18 too)
  4. Arrows with straight edges (maybe going too far here, but worth a try)
  5. All in all - match the structure, presented in the second picture, as closely as possible
link|improve this question

25% accept rate
Do you know the level numbers in your program (the ones labeled on the left in Dia)? I do not believe Graphviz can do rectilinear layouts, but you might be able to get the levels and some of the other layout stuff to be the same. – Jeremiah Willcock Feb 26 '11 at 22:25
According to the Graphviz resource page, Graph::Easy in Perl (bloodgate.com/perl/graph/manual) can do rectilinear layout of Graphviz files. – Jeremiah Willcock Feb 26 '11 at 22:37
@JeremiahWillcock I had a mechanism to define the levels, but it was bulky, so I removed it. I would prefer not to incorporate it again. Isn't there another way? The code above is from the (future) "Frontend" for my software. I don't know enough Perl to write the entire project with it. Also, I don't know how to glue C++ with Perl seamlessly (any ideas here?). I think the modifications to the graph script should be basic. E.g. 5 should be on the first level (yeah...) after 4 and 4 should be between 5 and 6. Could it be done easier? – John Locke Feb 27 '11 at 12:50
@John: Do you know whether the graph always has a DAG structure, and whether it always has a nice hierarchy of links (i.e., has splits and joins, and not random edges among nodes)? – Jeremiah Willcock Feb 27 '11 at 22:04
@Jeremiah: Thanks for your involvement. Yes, it has the nice structure every time. Does this help? – John Locke Feb 28 '11 at 10:54
show 8 more comments
feedback

1 Answer

I think this is the same as complicated graphviz tree structure question (which is answered already).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.