Changeset 986:e997802b855c in lemon-0.x for src/work/jacint/max_matching.cc
- Timestamp:
- 11/13/04 13:53:28 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1376
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/jacint/max_matching.cc
r921 r986 191 191 EdgeIt e; 192 192 for(G.first(e); G.valid(e); G.next(e) ) { 193 if ( (pos[G. head(e)]==max_matching.C && pos[G.tail(e)]==max_matching.D) ||194 (pos[G. head(e)]==max_matching.D && pos[G.tail(e)]==max_matching.C) )193 if ( (pos[G.target(e)]==max_matching.C && pos[G.source(e)]==max_matching.D) || 194 (pos[G.target(e)]==max_matching.D && pos[G.source(e)]==max_matching.C) ) 195 195 noedge=false; 196 196 }
Note: See TracChangeset
for help on using the changeset viewer.