To produce the jpeg file:
Code:
dot -Tjpeg ResTree.dot -o ResTree.dot.jpg
Try this in a terminal.
If it does not work, graphviz is not correctly installed (dot is a program from graphviz).
Otherwise, your PATH may be wrong:
Try within Singular:
Code:
system("sh","echo $PATH");
which should have /sw/bin in it.
Also try
Code:
system("sh","which dot");
Hope that helps