X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=dev%2Fpackage.lisp;h=21c7f39ea583c81c16f8168f2175faaa093733ac;hb=29f19f46a66f8f773af7e87760756c93d31717c0;hp=4a001883a1b2aa1f8724306c773df2c163fee9db;hpb=ca59f054a82701af97d9692576a5ce301980c60d;p=cl-graph.git diff --git a/dev/package.lisp b/dev/package.lisp index 4a00188..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 @@ -169,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