[Lemon-commits] deba: r3328 - lemon/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Tue Oct 9 11:36:55 CEST 2007


Author: deba
Date: Tue Oct  9 11:36:54 2007
New Revision: 3328

Modified:
   lemon/trunk/lemon/bipartite_matching.h

Log:
Bug fix in MaxMatching



Modified: lemon/trunk/lemon/bipartite_matching.h
==============================================================================
--- lemon/trunk/lemon/bipartite_matching.h	(original)
+++ lemon/trunk/lemon/bipartite_matching.h	Tue Oct  9 11:36:54 2007
@@ -115,7 +115,7 @@
           if (_rmatching[_graph->bNode(jt)] == INVALID) {
             _matching.set(it, jt);
 	    _rmatching.set(_graph->bNode(jt), jt);
-	    _reached.set(it, -1);
+	    _reached.set(_graph->bNode(jt), -1);
             ++_size;
             break;
           }



More information about the Lemon-commits mailing list