forked from tpapp/cl-num-utils
-
Notifications
You must be signed in to change notification settings - Fork 6
/
num-utils.asd
75 lines (73 loc) · 2.5 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-Lisp; Package: ASDF -*-
;;; Copyright (c) 2010 by Tamas K. Papp <[email protected]>
;;; Copyright (c) 2019-2023 by Symbolics Pte. Ltd. All rights reserved.
;;; SPDX-License-identifier: MS-PL
(defsystem "num-utils"
:version "1.6.1"
:license :MS-PL
:author "Steven Nunez <[email protected]>"
:long-name "Numerical Utilities"
:description "Numerical utilities for Common Lisp"
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "description.text"))
;:homepage "https://lisp-stat.dev/docs/tasks/plotting/"
:source-control (:git "https://github.com/Lisp-Stat/numerical-utilities.git")
:bug-tracker "https://github.com/Lisp-Stat/numerical-utilities/issues"
:depends-on (#:anaphora
#:alexandria
#:alexandria+
#:array-operations
#:select
#:let-plus)
:in-order-to ((test-op (test-op "num-utils/tests")))
:pathname "src/"
:serial t
:components ((:file "utilities")
(:file "arithmetic")
(:file "num=")
(:file "extended-real")
(:file "interval")
(:file "chebyshev")
(:file "polynomial")
(:file "elementwise")
(:file "print-matrix")
(:file "matrix")
(:file "matrix-shorthand")
(:file "quadrature")
(:file "rootfinding")
(:file "log-exp")
(:file "test-utilities")
(:file "pkgdcl")))
(defsystem "num-utils/tests"
:version "1.0.0"
:description "Unit tests for NUM-UTILS."
:author "Steven Nunez <[email protected]>"
:license "Same as NUM-UTILS -- this is part of the NUM-UTILS library."
#+asdf-unicode :encoding #+asdf-unicode :utf-8
:depends-on (#:num-utils
#:fiveam
#:select) ; matrix test needs this
:pathname "tests/"
:serial t
:components
((:file "test-package")
(:file "main")
;; in alphabetical order
(:file "arithmetic")
;; (:file "arithmetic-type") ; No tests included in Papp's version
(:file "chebyshev")
(:file "polynomial")
(:file "elementwise")
(:file "extended-real")
(:file "interval")
(:file "matrix")
(:file "matrix-shorthand")
(:file "num=")
(:file "quadrature")
(:file "rootfinding")
(:file "log-exp")
(:file "utilities"))
:perform (test-op (o s)
(uiop:symbol-call :fiveam :run!
(uiop:find-symbol* :all-tests
:num-utils-tests))))