aboutsummaryrefslogtreecommitdiff
path: root/lisp-algo.asd
diff options
context:
space:
mode:
authorLoic Guegan <manzerberdes@gmx.com>2019-02-24 20:33:55 +0100
committerLoic Guegan <manzerberdes@gmx.com>2019-02-24 20:33:55 +0100
commitb256fc334a6c8868a6159f32adb6dba01fefca86 (patch)
treef98e6dcf0957b3f68502d7f7142e8c218596868d /lisp-algo.asd
parent5725987c8dfd55d4ee0282f0a37779e06052f3c6 (diff)
Add CLOS to union-findHEADmaster
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")))