-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcl-permutation.asd
40 lines (39 loc) · 1.36 KB
/
cl-permutation.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
;;;; cl-permutation.asd
;;;;
;;;; Copyright (c) 2012-2023 Robert Smith
(asdf:defsystem #:cl-permutation
:description "A library for operating on permutations and permutation groups."
:author "Robert Smith <[email protected]>"
:license "BSD 3-clause (See LICENSE)"
:depends-on (#:alexandria
#:iterate
#:cl-algebraic-data-type
#:closer-mop
#:uiop
#:bordeaux-fft
#:priority-queue
#:cl-cont
)
:in-order-to ((asdf:test-op (asdf:test-op #:cl-permutation-tests)))
:pathname "src/"
:serial t
:components ((:file "package")
(:file "utilities")
(:file "permutation")
(:file "bruhat")
(:file "permutation-generation")
(:file "group")
(:file "free-group")
(:file "straight-line-program")
(:file "permutation-group")
(:file "minkwitz")
(:file "4-list-algorithm")
(:file "homomorphism")
(:file "orbit")
(:file "do-group-elements")
(:file "block")
(:file "combinatorial-ranking")
(:file "find-subgroups")
(:file "god")
(:file "block-subsystem-solver")
(:file "extra-functions")))