X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=dev%2Fgraph.lisp;h=8a17dc1387c6a032bfe24442273dcfd52a6a6501;hb=53ce4bea57e2710f2296878d79fe00ca31fec9fb;hp=32a9bd67e3a1c2455ae6864a644bc370077d34ca;hpb=438d1e0593dc62fe7b975a5865ec27955afcb7a1;p=cl-graph.git diff --git a/dev/graph.lisp b/dev/graph.lisp index 32a9bd6..8a17dc1 100644 --- a/dev/graph.lisp +++ b/dev/graph.lisp @@ -161,11 +161,11 @@ something is putting something on the vertexes plist's (largest-vertex-id 0 r) (largest-edge-id 0 r) (vertex-class 'basic-vertex ir - "The class of the vertexes in the graph.") + "The class of the vertexes in the graph. This must extend the base-class for vertexes of the graph type. E.g., all vertexes of a graph-container must extend graph-container-vertex.") (directed-edge-class 'basic-directed-edge ir - "The class used to create directed edges in the graph.") + "The class used to create directed edges in the graph. This must extend the base-class for edges of the graph type and directed-edge-mixin. E.g., the directed-edge-class of a graph-container must extend graph-container-edge and directed-edge-mixin.") (undirected-edge-class 'basic-edge ir - "The class used to create undirected edges in the graph.") + "The class used to create undirected edges in the graph. This must extend the base-class for edges of the graph type. E.g., all edges of a graph-container must extend graph-container-edge") (contains-directed-edge-p nil ar "Returns true if graph contains at least one directed edge. [?? Not sure if this is really keep up-to-date.]") (contains-undirected-edge-p nil ar