X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=dev%2Fapi.lisp;h=421cc817188cb336b83af4bb7b81ea53b7f924ee;hb=a419a81fe65c79b62f1b9aef584572f7a21cf294;hp=38b0eefbd7a208cf6c7fd55043b4f1580bbae249;hpb=587b8dda5f8e389cd8a770bb280364369cfe4ec2;p=cl-graph.git diff --git a/dev/api.lisp b/dev/api.lisp index 38b0eef..421cc81 100644 --- a/dev/api.lisp +++ b/dev/api.lisp @@ -439,17 +439,22 @@ and any other initialization arguments that make sense for the vertex class.")) ;;; --------------------------------------------------------------------------- (defgeneric source-edges (vertex &optional filter) - (:documentation "Returns a list of the source edges of `vertex`. [?? Could be a defun].")) + (:documentation "Returns a list of the source edges of `vertex`. I.e., +the edges that begin at `vertex`.")) ;;; --------------------------------------------------------------------------- (defgeneric target-edges (vertex &optional filter) - (:documentation "Returns a list of the target edges of `vertex`. [?? Could be a defun].")) + (:documentation "Returns a list of the target edges of `vertex`. +I.e., the edges that end at `vertex`.")) ;;; --------------------------------------------------------------------------- (defgeneric child-vertexes (vertex &optional filter) - (:documentation "Returns a list of the vertexes to which `vertex` is connected by an edge and for which `vertex` is the source vertex. If the connecting edge is undirected, then the vertex is always counted as a source. [?? Could be a defun].")) + (:documentation "Returns a list of the vertexes to which `vertex` +is connected by an edge and for which `vertex` is the source vertex. +If the connecting edge is undirected, then the vertex is always +counted as a source. [?? Could be a defun].")) ;;; ---------------------------------------------------------------------------