Skip to content

Commit

Permalink
add fdp, sfdp, twopi outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshCheek committed Dec 28, 2010
1 parent 45a8071 commit f1c02de
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lisp-tree/tree.lisp
Expand Up @@ -26,8 +26,11 @@
(fresh-line)
(translate-elements tree nil)
(princ "}")))
(ext:shell (concatenate 'string "dot -Tpng " fname " > graph1.png"))
(ext:shell (concatenate 'string "neato -Tpng " fname " > graph2.png"))))
(ext:shell (concatenate 'string "dot -Tpng " fname " > graph.dot.png"))
(ext:shell (concatenate 'string "neato -Tpng " fname " > graph.neato.png"))
(ext:shell (concatenate 'string "fdp -Tpng " fname " > graph.fdp.png"))
(ext:shell (concatenate 'string "sfdp -Tpng " fname " > graph.sfdp.png"))
(ext:shell (concatenate 'string "twopi -Tpng " fname " > graph.twopi.png"))))


(defparameter tree
Expand Down

0 comments on commit f1c02de

Please sign in to comment.