Displaying the graph of entities

Description

It is possible to view the graph of entities currently instanciated. The format used by dynamic-graph is dot. Using the python interpreter the following command

from dynamic_graph import *
writeGraph('/tmp/my_dynamic_graph.dot')

is writing the my_dynamic_graph.dot in the /tmp directory

Viewing as a PDF file

To view the dot file you can simply use:

dot -Tpdf /tmp/my_dynamic_graph.dot > /tmp/my_dynamic_graph.pdf

It provides the following output:

my_dynamic_graph.png