Changeset 501:20e4941a354a in lemon-0.x for src/work/marci/bipartite_matching_try_2.cc
- Timestamp:
- 04/30/04 20:43:18 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@661
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/bipartite_matching_try_2.cc
r500 r501 77 77 std::cout << std::endl; 78 78 79 std::cout << "Nodes:" << std::endl; 80 FOR_EACH_LOC(Graph::NodeIt, v, g) std::cout << v << " "; 81 std::cout << std::endl; 79 82 std::cout << "Nodes in T:" << std::endl; 80 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, g.T_CLASS) std::cout << v << " ";83 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, Graph::T_CLASS) std::cout << v << " "; 81 84 std::cout << std::endl; 82 85 std::cout << "Nodes in S:" << std::endl; 83 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, g.S_CLASS) std::cout << v << " ";86 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, Graph::S_CLASS) std::cout << v << " "; 84 87 std::cout << std::endl; 85 88 … … 93 96 94 97 std::cout << "Nodes in T:" << std::endl; 95 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, g.T_CLASS) std::cout << v << " ";98 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, Graph::T_CLASS) std::cout << v << " "; 96 99 std::cout << std::endl; 97 100 std::cout << "Nodes in S:" << std::endl; 98 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, g.S_CLASS) std::cout << v << " ";101 FOR_EACH_INC_LOC(Graph::ClassNodeIt, v, g, Graph::S_CLASS) std::cout << v << " "; 99 102 std::cout << std::endl; 100 103
Note: See TracChangeset
for help on using the changeset viewer.