diff options
| author | Loic GUEGAN <loic.guegan@yahoo.fr> | 2019-01-28 18:21:58 +0100 |
|---|---|---|
| committer | Loic GUEGAN <loic.guegan@yahoo.fr> | 2019-01-28 18:21:58 +0100 |
| commit | 0038d9bd0318c1025b8edd005f3aaa609a308a57 (patch) | |
| tree | db08592d5004a9bd3298be97a0f266689be708d0 /src/weighted-quick-union.lisp | |
| parent | 2dfdbfbb498d0584a8147279464039c49bea515a (diff) | |
Add algo
Diffstat (limited to 'src/weighted-quick-union.lisp')
| -rw-r--r-- | src/weighted-quick-union.lisp | 2 |
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))) |
