http://landoflisp.com/graph-util.lisp
(defun uedges->dot (edges);draw undirected graphs
(maplist (lambda (lst)
(mapc (lambda (edge)
(unless (assoc (car edge) (cdr lst))
(fresh-line)
(princ (dot-name (caar lst)))
(princ "--")
(princ (dot-name (car edge)))
(princ "[label=\"")
(princ (dot-label (cdr edge)))
(princ "\"];")))
(cdar lst)))
edges))
I thought this function has some problem, can someone fix it?
I solved it by myself. I hope somebody take care, while studying land of lisp p125 uedges-dot function.