equal
deleted
inserted
replaced
85 cout << g.id(n) << " "; |
85 cout << g.id(n) << " "; |
86 cout << endl; |
86 cout << endl; |
87 |
87 |
88 cout << "Edges of the bipartite graph:" << endl; |
88 cout << "Edges of the bipartite graph:" << endl; |
89 for (BGW::EdgeIt e(bgw); e!=INVALID; ++e) |
89 for (BGW::EdgeIt e(bgw); e!=INVALID; ++e) |
90 cout << g.id(bgw.tail(e)) << "->" << g.id(bgw.head(e)) << endl; |
90 cout << g.id(bgw.source(e)) << "->" << g.id(bgw.target(e)) << endl; |
91 |
91 |
92 BGW::NodeMap<int> dbyj(bgw); |
92 BGW::NodeMap<int> dbyj(bgw); |
93 BGW::EdgeMap<int> dbyxcj(bgw); |
93 BGW::EdgeMap<int> dbyxcj(bgw); |
94 |
94 |
95 // typedef stBipartiteGraphWrapper<BGW> stGW; |
95 // typedef stBipartiteGraphWrapper<BGW> stGW; |