X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=dev%2Fpackage.lisp;h=21c7f39ea583c81c16f8168f2175faaa093733ac;hb=29f19f46a66f8f773af7e87760756c93d31717c0;hp=5cf6d08009777e7426210fe74508f9653f1b6904;hpb=b621ac7a68fbf0d4ee562c4b2eeb7b6d707efa81;p=cl-graph.git diff --git a/dev/package.lisp b/dev/package.lisp index 5cf6d08..21c7f39 100644 --- a/dev/package.lisp +++ b/dev/package.lisp @@ -9,10 +9,10 @@ DISCUSSION |# (in-package common-lisp-user) -(defpackage "CL-GRAPH" - (:use "COMMON-LISP" "METATILITIES" "CL-CONTAINERS" - "METABANG.BIND" "METABANG.MATH") - (:nicknames "METABANG.GRAPH") +(defpackage #:cl-graph + (:use #:common-lisp #:metatilities #:cl-containers + #:metabang.bind #:metabang.math) + (:nicknames #:metabang.graph) (:documentation "CL-Graph is a Common Lisp library for manipulating graphs and running graph algorithms.") (:export @@ -84,6 +84,8 @@ DISCUSSION #:dot-vertex #:dot-edge #:dot-attributes + #:layout-graph-with-graphviz + #:dot-attribute-value #:connected-graph-p #:find-connected-components @@ -92,10 +94,6 @@ DISCUSSION #:target-vertex #:source-vertex - #:layout-graph-with-graphviz - #:dot-attribute-value - #:dot-attribute - #:add-edge ; graph edge #:delete-edge ; graph edge @@ -171,4 +169,11 @@ DISCUSSION #:graph-mixing-matrix #:graph-edge-mixture-matrix #:assortativity-coefficient - #:vertex-degree-summary)) \ No newline at end of file + #:vertex-degree-summary) + + (:export + #:print-dot-key-value + #:dot-attribute-value + #:dot-attributes-mixin + #:*dot-graph-attributes* + )) \ No newline at end of file