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
cl-randist / cl-randist.asd
100644 40 lines (37 sloc) 1.204 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(defpackage #:cl-randist-system
  (:use :cl :asdf))
 
(in-package #:cl-randist-system)
 
(defsystem :cl-randist
  :description "Random Distribution Generation"
  :version "0.4.1"
  :author "Leonardo Varuzza <varuzza@gmail.com>"
  :license "GPLv3"
  :serial t
  :components ((:file "packages")
;; #-(or sbcl cmucl) (:file "jmt")
;; originally, we used the internal random. However,
;; the Common Lisp spec doesn't really support directed
;; restarts for ensuring that the number stream can be
;; made identical. After all, the importance of that
;; use-case is only a relatively recent phenomena,
;; driven by statistical methodology.
(:file "jmt")
(:file "randist")
(:file "normal")
(:file "gamma")
(:file "dirichlet")
(:file "beta")
(:file "binomial")
(:file "poisson")
(:file "nbinomial")
(:file "multinomial")
(:file "alias_method")
(:file "exponential")
(:file "f")
(:file "pareto")
(:file "chisq")
(:file "t")
(:file "cut-point")
(:file "desc-stat")
(:file "GIG")
(:file "tests")))