diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-09-25 10:36:23 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-09-25 10:36:23 -0600 |
| commit | 58c73fd511b77cb94124b71a4bb75c7ab6a6d8bc (patch) | |
| tree | 25ae52afe365de29973efbb10fdecf2712deb430 /cl/lizfcm.asd | |
| parent | 2e284b71500a1f8dc6cc46ecf21eb1e9389ea780 (diff) | |
| download | math-4610-58c73fd511b77cb94124b71a4bb75c7ab6a6d8bc.tar.gz math-4610-58c73fd511b77cb94124b71a4bb75c7ab6a6d8bc.zip | |
add september notes & hw2 code / pdf
Diffstat (limited to 'cl/lizfcm.asd')
| -rw-r--r-- | cl/lizfcm.asd | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cl/lizfcm.asd b/cl/lizfcm.asd index ad69fa1..3e8c289 100644 --- a/cl/lizfcm.asd +++ b/cl/lizfcm.asd @@ -11,7 +11,13 @@ (:file "package"))) (:module "approx" :components - ((:file "derivative" :depends-on ("package")) + ((:file "maceps" :depends-on ("package")) + (:file "derivative" :depends-on ("package")) + (:file "package"))) + (:module "vector" + :components + ((:file "distance" :depends-on ("norm" "package")) + (:file "norm" :depends-on ("package")) (:file "package"))))))) @@ -23,7 +29,9 @@ :components ((:module "tests" :components ((:file "table" :depends-on ("suite")) + (:file "maceps" :depends-on ("suite")) (:file "approx" :depends-on ("suite")) + (:file "vector" :depends-on ("suite")) (:file "suite")))) :perform (asdf:test-op (o c) (uiop:symbol-call :fiveam :run! |
