-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlisperng.asd
28 lines (28 loc) · 955 Bytes
/
lisperng.asd
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
;;; -*- Mode: lisp -*-
(asdf:defsystem lisperng
:components
((:module package
:pathname ""
:components
((:file "package")))
(:module "distributions"
:depends-on ("package")
:components
((:file "ziggurat")
(:file "rng-beta" :depends-on ("ziggurat"))
(:file "rng-binomial" :depends-on ("ziggurat"))
(:file "rng-cauchy" :depends-on ("ziggurat"))
(:file "rng-exponential" :depends-on ("ziggurat"))
(:file "rng-gamma" :depends-on ("ziggurat" "rng-exponential"))
(:file "rng-gaussian" :depends-on ("ziggurat"))
(:file "rng-geometric" :depends-on ("ziggurat"))
(:file "rng-laplace" :depends-on ("ziggurat"))
(:file "rng-poisson" :depends-on ("ziggurat"))))
(:module "wellrng"
:components
((:file "well-rng-package")
;;(:file "well-common")
(:file "well-512a")
(:file "well-1024a")
(:file "well-19937a")
(:file "well-44497")))))