I am Charmie

メモとログ

GraphViz on ubuntu

I'm using Boost Graph Library (BGL) and looking for libraries/softwares that can visualize graph network obtained by using BGL.

GraphViz is an open source graph visualization software. Fortunately, BGL has a function that outputs graph network as .dot file that is GraphViz format.

  1. Install sudo apt-get install graphviz graphviz-dev libgraphviz-dev trac-graphviz
  2. Convert .dot file to pdf dot -Tpdf test.dot -o test.pdf