aboutsummaryrefslogtreecommitdiff
path: root/lisp-algo.asd
diff options
context:
space:
mode:
Diffstat (limited to 'lisp-algo.asd')
-rw-r--r--lisp-algo.asd5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp-algo.asd b/lisp-algo.asd
index 73cc824..35b7b86 100644
--- a/lisp-algo.asd
+++ b/lisp-algo.asd
@@ -4,10 +4,13 @@
:version "0.0.1"
:depends-on ("lisp-unit")
:perform (test-op (o s) (symbol-call :com.lisp-algo.test :do-tests))
+ :serial t
:components ((:file "packages")
(:module "union-find"
+ :serial t
:depends-on ("packages")
- :components ((:file "quick-find")
+ :components ((:file "union-find")
+ (:file "quick-find")
(:file "quick-union")
(:file "weighted-quick-union")
(:file "weighted-quick-union-path-compression")))