-
Notifications
You must be signed in to change notification settings - Fork 1
/
clml.extras.asd
35 lines (26 loc) · 890 Bytes
/
clml.extras.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
29
30
31
32
33
;;;; clml.asd
;(in-package "CL-USER")
#+sbcl (declaim (sb-ext:muffle-conditions sb-ext:compiler-note))
#+sbcl (declaim (sb-ext:muffle-conditions sb-kernel:character-decoding-error-in-comment))
(eval-when (:compile-toplevel :load-toplevel :execute)
)
(let ((*read-default-float-format* 'double-float))
(asdf:defsystem #:clml.extras
:serial t
:description "Enhancments to the base CLML (Common Lisp Machine Learming)"
:author"
Mike Maul <[email protected]>"
:maintainer "Mike Maul <[email protected]>"
:license "MIT"
:depends-on (
; :clml.ana
:clml.r-datasets
:clml.cl-plplot
:clml.extras.package
)
)
(asdf:defsystem :clml.extras.package
:serial t
:components (
(:file "package")))
)