lemon/bipartite_matching.h
changeset 2544 5143b01bf1d5
parent 2466 feb7974cf4ec
child 2550 f26368148b9c
equal deleted inserted replaced
12:d3e0515f9eee 13:0845c4a6e43b
   113         _matching[it] = INVALID;
   113         _matching[it] = INVALID;
   114         for (IncEdgeIt jt(*_graph, it); jt != INVALID; ++jt) {
   114         for (IncEdgeIt jt(*_graph, it); jt != INVALID; ++jt) {
   115           if (_rmatching[_graph->bNode(jt)] == INVALID) {
   115           if (_rmatching[_graph->bNode(jt)] == INVALID) {
   116             _matching.set(it, jt);
   116             _matching.set(it, jt);
   117 	    _rmatching.set(_graph->bNode(jt), jt);
   117 	    _rmatching.set(_graph->bNode(jt), jt);
   118 	    _reached.set(it, -1);
   118 	    _reached.set(_graph->bNode(jt), -1);
   119             ++_size;
   119             ++_size;
   120             break;
   120             break;
   121           }
   121           }
   122         }
   122         }
   123       }
   123       }