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