moving to git; cleanup; wip
[cl-graph.git] / dev / package.lisp
index eb250c9..45d89b9 100644 (file)
@@ -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
    
@@ -160,7 +161,8 @@ DISCUSSION
    #:project-bipartite-graph
    
    #:make-vertex-edges-container 
-   
+   #:make-vertex-for-graph
+
    #:vertex-degree-counts
    #:vertex-degree
    #:average-vertex-degree
@@ -170,11 +172,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
+   ))