X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=dev%2Fpackage.lisp;h=0b3a3c369e2bbc084a308df07a0b515b774fbc00;hb=30d6c8f9bd55ddefd48d333bfeb73b1a2a333e99;hp=e1177990e82a07b0022f9c7c39e5735728cc67c9;hpb=1fe64e8b966450697100fae6ec35cc5688a88bd6;p=cl-graph.git diff --git a/dev/package.lisp b/dev/package.lisp index e117799..0b3a3c3 100644 --- a/dev/package.lisp +++ b/dev/package.lisp @@ -11,7 +11,7 @@ DISCUSSION (defpackage #:cl-graph (:use #:common-lisp #:metatilities #:cl-containers - #:metabang.bind #:metabang.math) + #:metabang.bind #+(or) #:cl-mathstats #:moptilities) (:nicknames #:metabang.graph) (:documentation "CL-Graph is a Common Lisp library for manipulating graphs and running graph algorithms.") @@ -96,7 +96,8 @@ DISCUSSION #:add-edge ; graph edge #:delete-edge ; graph edge - + #:delete-all-edges + #:add-vertex ; graph { value | vertex } #:delete-vertex ; graph { value | vertex } #:find-vertex ; graph { value | vertex } @@ -116,7 +117,9 @@ DISCUSSION #:has-children-p #:has-parent-p #:number-of-neighbors - + #:graph-vertexes + #:replace-vertex + #:edge-count ; graph #:vertex-count ; graph @@ -159,7 +162,8 @@ DISCUSSION #:project-bipartite-graph #:make-vertex-edges-container - + #:make-vertex-for-graph + #:vertex-degree-counts #:vertex-degree #:average-vertex-degree @@ -169,7 +173,12 @@ 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