# HG changeset patch # User deba # Date 1191922614 0 # Node ID da94e3b332f3d5fa4b84a3e824035931c1266ee2 # Parent 568ff3572a96c4c7f7c42a0cab0a3d69c89684be Bug fix in MaxMatching diff -r 568ff3572a96 -r da94e3b332f3 lemon/bipartite_matching.h --- a/lemon/bipartite_matching.h Tue Oct 02 14:20:04 2007 +0000 +++ b/lemon/bipartite_matching.h Tue Oct 09 09:36:54 2007 +0000 @@ -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; }