X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=dev%2Fpackage.lisp;h=83e707f83bd53cb03c8d7242c503505ca322f407;hb=HEAD;hp=eb250c9a919d9daa2cb8e00e8fbde0f526807f10;hpb=25d9c9819ce0bb610c024c3ef760660e76653c21;p=cl-graph.git diff --git a/dev/package.lisp b/dev/package.lisp index eb250c9..83e707f 100644 --- a/dev/package.lisp +++ b/dev/package.lisp @@ -10,8 +10,7 @@ DISCUSSION (in-package #:common-lisp-user) (defpackage #:cl-graph - (:use #:common-lisp #:metatilities #:cl-containers - #:metabang.bind) + (:use #:common-lisp #:metatilities #:cl-containers #:metabang-bind) (:nicknames #:metabang.graph) (:documentation "CL-Graph is a Common Lisp library for manipulating graphs and running graph algorithms.") @@ -117,7 +116,9 @@ DISCUSSION #:has-children-p #:has-parent-p #:number-of-neighbors - + #:graph-vertexes + #:replace-vertex + #:edge-count ; graph #:vertex-count ; graph @@ -145,7 +146,8 @@ DISCUSSION #:edge-lessp-by-direction #:out-edge-for-vertex-p #:dfs - + #:rooted-dfs + ;;; minimum-spanning-tree #+Ignore #:add-edges-to-graph @@ -160,7 +162,8 @@ DISCUSSION #:project-bipartite-graph #:make-vertex-edges-container - + #:make-vertex-for-graph + #:vertex-degree-counts #:vertex-degree #:average-vertex-degree @@ -170,11 +173,16 @@ DISCUSSION #:graph-mixing-matrix #:graph-edge-mixture-matrix #:assortativity-coefficient - #:vertex-degree-summary) + #:vertex-degree-summary + #:connected-components + #:average-local-clustering-coefficient + #:vertex-triangle-count + #:graph-edges + #:graph-vertexes) (:export #:print-dot-key-value #:dot-attribute-value #:dot-attributes-mixin #:*dot-graph-attributes* - )) \ No newline at end of file + ))