X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=dev%2Fpackage.lisp;h=b5b03b8b7cd0567eefefa7887c7d3dc9144f0a1a;hb=e1ed2db513d5c744cc1f6b0427d2550ec534edba;hp=21c7f39ea583c81c16f8168f2175faaa093733ac;hpb=29f19f46a66f8f773af7e87760756c93d31717c0;p=cl-graph.git diff --git a/dev/package.lisp b/dev/package.lisp index 21c7f39..b5b03b8 100644 --- a/dev/package.lisp +++ b/dev/package.lisp @@ -7,11 +7,10 @@ Author: Gary King, et. al. DISCUSSION |# -(in-package common-lisp-user) +(in-package #:common-lisp-user) (defpackage #:cl-graph - (:use #:common-lisp #:metatilities #:cl-containers - #:metabang.bind #:metabang.math) + (:use #:common-lisp #:metatilities #:cl-containers) (:nicknames #:metabang.graph) (:documentation "CL-Graph is a Common Lisp library for manipulating graphs and running graph algorithms.") @@ -96,7 +95,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 +116,9 @@ DISCUSSION #:has-children-p #:has-parent-p #:number-of-neighbors - + #:graph-vertexes + #:replace-vertex + #:edge-count ; graph #:vertex-count ; graph @@ -159,7 +161,8 @@ DISCUSSION #:project-bipartite-graph #:make-vertex-edges-container - + #:make-vertex-for-graph + #:vertex-degree-counts #:vertex-degree #:average-vertex-degree @@ -169,7 +172,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