aboutsummaryrefslogtreecommitdiff
path: root/src/weighted-quick-union.lisp
diff options
context:
space:
mode:
authorLoic GUEGAN <loic.guegan@yahoo.fr>2019-01-28 18:21:58 +0100
committerLoic GUEGAN <loic.guegan@yahoo.fr>2019-01-28 18:21:58 +0100
commit0038d9bd0318c1025b8edd005f3aaa609a308a57 (patch)
treedb08592d5004a9bd3298be97a0f266689be708d0 /src/weighted-quick-union.lisp
parent2dfdbfbb498d0584a8147279464039c49bea515a (diff)
Add algo
Diffstat (limited to 'src/weighted-quick-union.lisp')
-rw-r--r--src/weighted-quick-union.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/weighted-quick-union.lisp b/src/weighted-quick-union.lisp
index 7a3a3a7..679de80 100644
--- a/src/weighted-quick-union.lisp
+++ b/src/weighted-quick-union.lisp
@@ -49,7 +49,7 @@ the find operation on the Quick Union algorithm"
`(= (find-root ,network ,n1) (find-root ,network ,n2)))
(defmacro nunion_ (network n1 n2)
- "A consed version of the union function."
+ "A destructive version of the union function."
`(setf ,network (union_ ,network ,n1 ,n2)))