cleanup; reduce bitrot
authorGary King <gwking@metabang.com>
Sun, 16 Mar 2008 16:46:10 +0000 (12:46 -0400)
committerGary King <gwking@metabang.com>
Sun, 16 Mar 2008 16:46:10 +0000 (12:46 -0400)
darcs-hash:20080316164610-3cc5d-ef9c55334e10f41f67d6dc97a11f77a59ffea511.gz

cl-graph.asd
dev/graph-generation.lisp
unit-tests/test-graph.lisp

index 13b3e11..04167d7 100644 (file)
@@ -46,7 +46,7 @@ instructions."))
                "website"
                :components 
                ((:module "source"
-                         :components ((:static-file "index.lml"))))))
+                         :components ((:static-file "index.md"))))))
   :in-order-to ((test-op (load-op :cl-graph-test)))
   :perform (test-op :after (op c)
                    (funcall
index cf983a0..eed4009 100644 (file)
 ;;; ---------------------------------------------------------------------------
 
 (defun poisson-vertex-degree-distribution (z k)
-  (/ (* (expt z k) (expt +e+ (- z)))
+  (/ (* (expt z k) (expt cl-mathstats:+e+ (- z)))
      (factorial k)))
 
 #|
@@ -409,7 +409,8 @@ from this distribution
 ;;; ---------------------------------------------------------------------------
 
 (defun power-law-vertex-degree-distribution (kappa k)
-  (* (- 1 (expt +e+ (- (/ kappa)))) (expt +e+ (- (/ k kappa)))))
+  (* (- 1 (expt cl-mathstats:+e+ (- (/ kappa)))) 
+     (expt cl-mathstats:+e+ (- (/ k kappa)))))
 
 ;;; ---------------------------------------------------------------------------
 
index aae24be..3e36301 100644 (file)
@@ -25,7 +25,7 @@
     (ensure-same (size g) 2)))
 
 (addtest (test-test-vertex)
-  test-1
+  test-2
   (bind ((x (float 2.1d0))
          (y (float 2.1d0))
          (g (make-container 'graph-container :vertex-test #'=)))