-
Notifications
You must be signed in to change notification settings - Fork 1
/
anatevka.asd
34 lines (33 loc) · 1.28 KB
/
anatevka.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
;;;; anatevka.asd
;;;;
;;;; Author: Eric Peterson, Peter Karalekas
(asdf:defsystem #:anatevka
:description "A distributed blossom algorithm for minimum-weight perfect matching."
:author "Eric Peterson <[email protected]>, Peter Karalekas <[email protected]>"
:version (:read-file-form "VERSION.txt")
:pathname "src/"
:depends-on (#:alexandria
(:version #:aether "1.1.0")
)
:in-order-to ((asdf:test-op (asdf:test-op #:anatevka-tests)))
:around-compile (lambda (compile)
(let (#+sbcl(sb-ext:*derive-function-types* t))
(funcall compile)))
:serial t
:components ((:file "package")
(:file "utilities")
(:file "logger")
(:file "dryad-api")
(:file "node")
(:file "supervisor")
(:file "lock")
(:module "operations"
:serial t
:components ((:file "scan")
(:file "graft")
(:file "augment")
(:file "expand")
(:file "contract")
(:file "multireweight")
(:file "reweight")))
(:file "dryad")))