-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcom.ral.vmath.asd
More file actions
executable file
·46 lines (41 loc) · 1.66 KB
/
com.ral.vmath.asd
File metadata and controls
executable file
·46 lines (41 loc) · 1.66 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
41
42
43
44
45
(asdf:defsystem "com.ral.vmath"
:description "vmath: a system for vectorized math"
:version "1.0"
:author "D.McClain <dbm@spectrodynamics.com>"
:license "Copyright (c) 2008 by SpectroDynamics, LLC. All rights reserved."
:components ((:file "packages")
(:file "simple-vector-ops")
(:file "vmath")
(:file "matrix")
(:file "lmfit")
(:file "linfit")
(:file "kalman")
(:file "locate")
(:file "interpolate")
(:file "monotonic-spline")
(:file "integrate")
(:file "roots")
(:file "fft-tools")
(:file "kaiser")
(:file "simplex")
#+:MACOSX
(:MODULE "Mac"
:COMPONENTS ((:file "mac_fft_intf")
(:file "fft-structs")
(:file "mac-fft" :depends-on ("mac_fft_intf"))
(:file "fft-twids" :depends-on ("mac_fft_intf"))
(:file "mac-sfft")
(:file "mac-dfft")
(:file "mac-fft2d")
))
#+:win32
(:MODULE "Win"
:components ((:file "win_fft_intf")
(:file "win-fft" :depends-on ("win_fft_intf"))))
(:file "nr-glue")
#+:MACOSX (:file "burg")
#+:MACOSX (:file "dgesvd"))
:serial t
:depends-on (
;; "data-objects"
"com.ral.c-arrays"))