COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
04/30/04 20:43:18 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@661
Message:

bipatite

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/bipartite_matching_try_2.cc

    r500 r501  
    7777  std::cout << std::endl;
    7878
     79  std::cout << "Nodes:" << std::endl;
     80  FOR_EACH_LOC(Graph::NodeIt, v, g) std::cout << v << " ";
     81  std::cout << std::endl;
    7982  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 << " ";
    8184  std::cout << std::endl;
    8285  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 << " ";
    8487  std::cout << std::endl;
    8588
     
    9396
    9497  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 << " ";
    9699  std::cout << std::endl;
    97100  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 << " ";
    99102  std::cout << std::endl;
    100103
Note: See TracChangeset for help on using the changeset viewer.