-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgraph-algorithms.asd
30 lines (26 loc) · 970 Bytes
/
graph-algorithms.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
;;;; graph-algorithms.asd
(asdf:defsystem #:graph-algorithms
:description "Assorted graph algorithms."
:author "Fabricio Chalub <f@cp300.org>"
:license "MIT"
:depends-on (#:cl-speedy-queue
#:minheap
#:alexandria)
:serial t
:components ((:file "package")
(:file "maximal-cliques")
(:file "breadth-first-search")
(:file "connected-components")
(:file "degrees")
(:file "shortest-paths")))
(asdf:defsystem #:graph-algorithms/tests
:description "Unit tests for :graph-algorithms."
:author "Fabricio Chalub <f@cp300.org>"
:license "MIT"
:depends-on (#:graph-algorithms
#:fiveam)
:components ((:module "tests"
:serial t
:components ((:file "package")
(:file "main")))))
;;; :perform (test-op (o s) (uiop:symbol-call :fiveam :run! 'graph-algorithms/tests:all-tests)))