public
Description: Random number generation for common lisp
Homepage: http://code.google.com/p/cl-randist/
Clone URL: git://github.com/lvaruzza/cl-randist.git
incorporate desc-stat code into randist package
lvaruzza (author)
Fri Feb 15 13:25:05 -0800 2008
commit  5ac29d9a9bcb585baa44214f59996ec659c9f8e9
tree    114b0c9f4d9cc8a0ecd3bc74930ffd3c48bd9c6a
parent  f24fe4a79c1cc6b7c7a126f2409310394b5606cd
...
 
 
1
2
3
...
1
2
3
4
5
0
@@ -1,3 +1,5 @@
0
+(in-package :randist)
0
+
0
 ;; An implementation of the Alias Method.
0
 ;;
0
 ;; NOTE: Additional comments, and an updated, more accurate version
...
5
6
7
8
9
 
10
11
12
...
16
17
18
19
 
 
20
21
22
23
...
5
6
7
 
 
8
9
10
11
...
15
16
17
 
18
19
20
21
22
23
0
@@ -5,8 +5,7 @@
0
 
0
 (defsystem :cl-randist
0
   :description "Random Distribution Generation"
0
- :depends-on (:cl-desc-stat)
0
- :version "0.1"
0
+ :version "0.2"
0
   :author "Leonardo Varuzza <varuzza@gmail.com>"
0
   :license "GPLv3"
0
   :serial t
0
@@ -16,7 +15,8 @@
0
    (:file "randist-gamma")
0
    (:file "randist-beta")
0
    (:file "randist-binomial")
0
- (:file "randist-multinomial")
0
+ (:file "desc-stat")
0
+ (:file "randist-multinomial")
0
    (:file "tests")))
0
 
0
   
0
\ No newline at end of file
...
1
2
3
4
 
5
6
7
...
1
2
3
 
4
5
6
7
0
@@ -1,7 +1,7 @@
0
 (in-package :cl-user)
0
 
0
 (defpackage :random-distributions
0
- (:use :cl :desc-stat)
0
+ (:use :cl)
0
   (:nicknames :randist)
0
   (:export
0
    random-uniform

Comments

    No one has commented yet.