[Lemon-commits] deba: r3118 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Tue Dec 19 15:00:44 CET 2006


Author: deba
Date: Tue Dec 19 15:00:43 2006
New Revision: 3118

Modified:
   hugo/trunk/lemon/unionfind.h

Log:
Bug fix




Modified: hugo/trunk/lemon/unionfind.h
==============================================================================
--- hugo/trunk/lemon/unionfind.h	(original)
+++ hugo/trunk/lemon/unionfind.h	Tue Dec 19 15:00:43 2006
@@ -312,7 +312,7 @@
         items[ak].parent += items[bk].parent;
 	items[bk].parent = ak;
       } else {
-        unlaceClass(bk);
+        unlaceClass(ak);
         items[bk].parent += items[ak].parent;
 	items[ak].parent = bk;
       }



More information about the Lemon-commits mailing list