-
Notifications
You must be signed in to change notification settings - Fork 2
/
clem.asd
73 lines (70 loc) · 3.56 KB
/
clem.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(asdf:defsystem :clem
:name "clem"
:author "Cyrus Harmon <[email protected]>"
:version "0.4.8"
:licence "BSD"
:components
((:module
:src
:components
((:cl-source-file "defpackage")
(:cl-source-file "utilities" :depends-on ("defpackage"))
(:cl-source-file "metaclasses" :depends-on ("defpackage"))
(:cl-source-file "early-matrix" :depends-on ("defpackage" "metaclasses"))
(:cl-source-file "mref" :depends-on ("early-matrix"))
(:cl-source-file "macros" :depends-on ("defpackage" "metaclasses" "mref"))
(:cl-source-file "matrix-classes" :depends-on ("defpackage"
"metaclasses"
"mref"
"macros"))
(:cl-source-file "matrix" :depends-on ("matrix-classes" "utilities"))
(:cl-source-file "print" :depends-on ("matrix"))
(:cl-source-file "typed-matrix" :depends-on ("defpackage" "matrix"))
(:cl-source-file "mloop" :depends-on ("defpackage" "matrix"))
(:cl-source-file "defmatrix" :depends-on ("typed-matrix" "mref"))
(:cl-source-file "defmatrix-types" :depends-on ("defmatrix"))
(:cl-source-file "scalar" :depends-on ("matrix"))
(:cl-source-file "typed-matrix-utils" :depends-on ("typed-matrix"))
(:cl-source-file "vector" :depends-on ("matrix"))
(:cl-source-file "matrixops" :depends-on ("typed-matrix-utils"))
(:cl-source-file "interpolation" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "transform" :depends-on ("matrix"
"defmatrix-types"
"interpolation"))
(:cl-source-file "extrema" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "add" :depends-on ("matrix"
"defmatrix-types"
"scalar"
"mloop"
"mref"
"vector"
"typed-matrix-utils"))
(:cl-source-file "subtr" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "scale" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "move" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "sum" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "arithmetic" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "log" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "logical-operations" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "abs" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "normalize" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "statistics" :depends-on ("matrix" "defmatrix-types"))
(:cl-source-file "exponential" :depends-on ("matrix" "defmatrix-types"))
(:module
:typed-ops
:components
((:cl-source-file "defmatrix-equal")
(:cl-source-file "defmatrix-hprod")
(:cl-source-file "defmatrix-mult")
(:cl-source-file "defmatrix-mult-block")
(:cl-source-file "defmatrix-transform")
(:cl-source-file "defmatrix-scale")
(:cl-source-file "defmatrix-subset-matrix")
(:cl-source-file "defmatrix-convolve"))
:depends-on ("defmatrix-types"
"matrix"
"mloop"
"scalar"
"interpolation"
"matrixops"
"typed-matrix-utils"))))))