summaryrefslogtreecommitdiff
path: root/Homework/math4610/deprecated-cl/lizfcm.asd
diff options
context:
space:
mode:
authorElizabeth Alexander Hunt <me@liz.coffee>2026-07-02 11:55:17 -0700
committerElizabeth Alexander Hunt <me@liz.coffee>2026-07-02 11:55:17 -0700
commit6bf4b90c90f15f4ab60833bddf5b5756d1a6b1f6 (patch)
treeed97e39ec77c5231ffd2c394493e68d00ddac5a4 /Homework/math4610/deprecated-cl/lizfcm.asd
downloadmisc-undergrad-main.tar.gz
misc-undergrad-main.zip
Diffstat (limited to 'Homework/math4610/deprecated-cl/lizfcm.asd')
-rw-r--r--Homework/math4610/deprecated-cl/lizfcm.asd33
1 files changed, 33 insertions, 0 deletions
diff --git a/Homework/math4610/deprecated-cl/lizfcm.asd b/Homework/math4610/deprecated-cl/lizfcm.asd
new file mode 100644
index 0000000..dea3ddd
--- /dev/null
+++ b/Homework/math4610/deprecated-cl/lizfcm.asd
@@ -0,0 +1,33 @@
+(asdf:defsystem "lizfcm"
+ :version "0.1.0"
+ :author "Elizabeth Hunt"
+ :license "MIT"
+ :components
+ ((:file "utils,within-range" :depends-on ("utils,package"))
+ (:file "utils,table" :depends-on ("utils,package"))
+ (:file "utils,package")
+ (:file "approx,maceps" :depends-on ("approx,package"))
+ (:file "approx,derivative" :depends-on ("approx,package"))
+ (:file "approx,package")
+ (:file "vector,least-squares" :depends-on ("vector,package"))
+ (:file "vector,distance" :depends-on ("vector,norm" "vector,package"))
+ (:file "vector,norm" :depends-on ("vector,package"))
+ (:file "vector,package")))
+
+
+(asdf:defsystem "lizfcm/tests"
+ :author "Elizabeth Hunt"
+ :license "MIT"
+ :depends-on
+ (:fiveam
+ :lizfcm)
+ :components
+ ((:file "tests,table" :depends-on ("tests,suite"))
+ (:file "tests,maceps" :depends-on ("tests,suite"))
+ (:file "tests,approx" :depends-on ("tests,suite"))
+ (:file "tests,vector" :depends-on ("tests,suite"))
+ (:file "tests,suite"))
+ :perform
+ (asdf:test-op (o c) (uiop:symbol-call
+ :fiveam :run!
+ (uiop:find-symbol* :lizfcm-test-suite :lizfcm/tests))))