X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=dev%2Fpackage.lisp;h=21c7f39ea583c81c16f8168f2175faaa093733ac;hb=29f19f46a66f8f773af7e87760756c93d31717c0;hp=5e446a8a08b2020b53ed1c9178216b82ea94b232;hpb=16da51f4e670b9a4fca0b3f64b8786478ac94010;p=cl-graph.git diff --git a/dev/package.lisp b/dev/package.lisp index 5e446a8..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 @@ -83,6 +83,9 @@ DISCUSSION #:dot-graph #:dot-vertex #:dot-edge + #:dot-attributes + #:layout-graph-with-graphviz + #:dot-attribute-value #:connected-graph-p #:find-connected-components @@ -166,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