Skip to content
This repository has been archived by the owner on Mar 7, 2018. It is now read-only.

Commit

Permalink
Preliminary cleanup of discrete.
Browse files Browse the repository at this point in the history
  • Loading branch information
tpapp committed Feb 11, 2013
1 parent a64ec9f commit e92295c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cl-random.asd
Expand Up @@ -15,7 +15,7 @@
((:file "internals")
(:file "package")
(:file "random")
;; (:file "discrete")
(:file "discrete")
(:file "univariate")
;; (:file "continuous-time")
;; (:file "statistics")
Expand Down
19 changes: 13 additions & 6 deletions tests/package.lisp
@@ -1,9 +1,16 @@
(defpackage cl-random-tests
(:use #:cl #:alexandria #:iterate #:let-plus #:anaphora #:lift #:cl-random
#:cl-num-utils #:lla)
(:shadowing-import-from #:cl-random #:mean #:variance #:median ; also in ALEXANDRIA
#:displace-array ; no longer in ALEXANDRIA, TODO remove in 2012 June
(:use #:cl
#:alexandria
#:anaphora
#:cl-num-utils.elementwise
#:cl-num-utils.matrix-shorthand
#:cl-random
#:iterate
#:let-plus
#:lift
#:lla
)
(:shadowing-import-from #:cl-num-utils #:mean #:variance #:median ; also in ALEXANDRIA
#:sum ; also in ITERATE
)
(:export #:random-y-x #:run)
(:import-from #:cl-num-utils-tests #:vector* #:array*))
(:export #:random-y-x #:run))

0 comments on commit e92295c

Please sign in to comment.