I found the following graph libraries, but I am not sure which one I should use. Maybe there are some more...

What it should do:

  • draw a undirected network map
  • come as header only or static lib for Windows
  • the output format should be user editable
  • Visualization is then done by some other application which is capable of the output format

Graphviz is the only one I tried so far, but I found no static lib for it, I failed to build it by my own, and the documentation could be better. Therefore I looked around and found these other three libs.

I would be glad to get some recommendations on which lib to choose.

EDIT:
I am not sure which components I need. I want to achieve the following: Network device information is parsed by my application and then it computes a neighborship table of all devices. This neighborship table should then be visualized. It would be nice to get two output formats - a picture (i.e. PNG, GIF, or JPEG...) and a user-editable format. For the last mentioned, the user will then start a third-party application to edit the graph. But graph computation should be done by the graph lib used.

Maybe I am too naive, but if this the case, please clarify what I am missing.

EDIT #2
Added OGDF

link|improve this question

2  
I do not think boost graph has graphics capabilities, other than producing outpute files – Anycorn May 1 '10 at 23:04
You should change your title as you are requesting a graphics library? – Vicente Botet Escriba May 1 '10 at 23:31
@aaa: But how are the graphs stored then? Thanks, mspoerr – mspoerr May 2 '10 at 7:24
1  
graph is stored in memory, like array. bgl is for manipulating graph structures – Anycorn May 3 '10 at 4:13
ok, thank you for clarification – mspoerr May 3 '10 at 19:05
feedback

3 Answers

up vote 7 down vote accepted

I now tested the libs mentioned above and decided to use OGDF with GML output.

Reasons why I didn't use one of the others:

  • Graphviz: Too much overhead. a static lib is mandatory for me and this is hardly possible with Graphviz. There are many additional components needed besides the library. The only functionality of GraphViz I would like to have is the rich number of output formats.
  • Boost Graph Library: Very complicated in my opinion. Normally I like the Boost libs very much.
  • Lemon: There seem to be no layout algorithms.
  • igraph: Would also work, but OGDF seems to be easier to use.

Why GML?
There are some free graph applications (yEd, GoVisual Diagramm Editor) which support GML. My tool only generates the graph and it should then be edited elsewhere.

EDIT: There is now a GML convertion tool available: http://www.ogdf.net/doku.php/project:gml2pic. The supported output formats are JPG, PNG, TIFF, SVG, PDF, EPS...

link|improve this answer
feedback

I think there is no solution for you.

Boost::Graph is the only header only library. And for drawing the graphs, boost relies on graphiz (and requires to be binary built library).

I would suggest to use graphiz as a standalone executable, and your application runs the graphviz executable.

link|improve this answer
Thank you for the answer. I thought that the BGL could do thid by its own. What am I missing? – mspoerr May 2 '10 at 7:18
Hello again, I found that BGL is able to produce GraphML and DIMACS Max-flow files; Lemon is able to produce EPS, Lemon Graph Format, DIMACS and Nauty files. igraph can write in GraphML, GML or Pajek – mspoerr May 2 '10 at 10:32
1  
I was thinking of a graphical representation (jpeg, png, whatever). For that GraphML or any format won't help. You still need something for the rendering. – Tristram Gräbener May 2 '10 at 11:17
ah - ok. But Lemon with EPS output would then be an option... – mspoerr May 2 '10 at 11:24
feedback

Try LEDA. It is fast, efficient and has almost all the thing you are looking for. It's free version may not have sophisticated graph-algorithms as boost does.

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.