-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
I'm trying to run the example in the documentation (https://common-lisp.net/project/cl-graph/user-guide.html#header3-18):
(let ((g (make-container 'graph-container :default-edge-type :directed)))
(loop for (a b) in '((a b) (b c) (b d) (d e) (e f) (d f)) do
(add-edge-between-vertexes g a b))
(graph->dot g nil)) and I'm getting the following error:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION DOT-ATTRIBUTE-VALUE (1)>
when called with arguments
(:LABEL #<GRAPH-CONTAINER-DIRECTED-EDGE <#<A> #<B> NIL>>).
Has anything changed?
My old code that used cl-graph and dot export is failing with the same error and I just discovered that the example in the documentation doesn't work either.
Any idea as to why this fails?
Thanks!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels