This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcl-num-utils.asd
60 lines (58 loc) · 1.67 KB
/
cl-num-utils.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
;;; Copyright Tamas Papp 2010.
;;;
;;; Distributed under the Boost Software License, Version 1.0. (See
;;; accompanying file LICENSE_1_0.txt or copy at
;;; http://www.boost.org/LICENSE_1_0.txt)
;;;
;;; This copyright notice pertains to all files in this library.
(asdf:defsystem #:cl-num-utils
:description "Numerical utilities for Common Lisp"
:version "0.1"
:author "Tamas K Papp <tkpapp@gmail.com>"
:license "Boost Software License - Version 1.0"
#+asdf-unicode :encoding #+asdf-unicode :utf-8
:depends-on (#:anaphora
#:alexandria
#:array-operations
#:cl-slice
#:let-plus)
:pathname "src/"
:serial t
:components
((:file "utilities")
(:file "num=")
(:file "arithmetic")
(:file "elementwise")
(:file "extended-real")
(:file "interval")
(:file "print-matrix")
(:file "matrix")
(:file "matrix-shorthand")
(:file "statistics")
(:file "chebyshev")
(:file "rootfinding")
(:file "quadrature")
(:file "common-package")))
(asdf:defsystem #:cl-num-utils-tests
:description "Unit tests for CL-NUM-UTILS.."
:author "Tamas K Papp <tkpapp@gmail.com>"
:license "Same as CL-NUM-UTILS -- this is part of the CL-NUM-UTILS library."
#+asdf-unicode :encoding #+asdf-unicode :utf-8
:depends-on (#:cl-num-utils
#:clunit)
:pathname "tests/"
:serial t
:components
((:file "setup")
;; in alphabetical order
(:file "arithmetic")
(:file "chebyshev")
(:file "elementwise")
(:file "extended-real")
(:file "interval")
(:file "matrix")
(:file "matrix-shorthand")
(:file "num=")
(:file "statistics")
(:file "utilities")
(:file "rootfinding")))