A bipartite graph template can be used as BipartiteGraph<ListGraph>.
7 #include <list_graph.h>
8 //#include <smart_graph.h>
10 #include <time_measure.h>
11 #include <for_each_macros.h>
12 #include <bfs_iterator.h>
13 #include <bipartite_graph_wrapper.h>
18 * Inicializalja a veletlenszamgeneratort.
19 * Figyelem, ez nem jo igazi random szamokhoz,
20 * erre ne bizzad a titkaidat!
24 unsigned int seed = getpid();
32 * Egy veletlen int-et ad vissza 0 es m-1 kozott.
36 return int( double(m) * rand() / (RAND_MAX + 1.0) );
42 //typedef UndirListGraph Graph;
43 typedef BipartiteGraph<ListGraph> Graph;
45 typedef Graph::Node Node;
46 typedef Graph::NodeIt NodeIt;
47 typedef Graph::Edge Edge;
48 typedef Graph::EdgeIt EdgeIt;
49 typedef Graph::OutEdgeIt OutEdgeIt;
53 std::vector<Graph::Node> s_nodes;
54 std::vector<Graph::Node> t_nodes;
57 std::cout << "number of nodes in the first color class=";
60 std::cout << "number of nodes in the second color class=";
63 std::cout << "number of edges=";
67 for (int i=0; i<a; ++i) s_nodes.push_back(g.addNode(false));
68 for (int i=0; i<b; ++i) t_nodes.push_back(g.addNode(true));
71 for(int i=0; i<m; ++i) {
72 g.addEdge(s_nodes[random(a)], t_nodes[random(b)]);
75 std::cout << "Edges of the bipartite graph:" << std::endl;
76 FOR_EACH_LOC(EdgeIt, e, g) std::cout << e << " ";
77 std::cout << std::endl;
79 typedef stGraphWrapper<Graph> stGW;
81 ConstMap<stGW::Edge, int> const1map(1);
88 stGW::EdgeMap<int> flow(stgw);
89 MaxFlow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
90 max_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, flow);
91 // while (max_flow_test.augmentOnShortestPath()) { }
92 typedef ListGraph MutableGraph;
93 // while (max_flow_test.augmentOnBlockingFlow1<MutableGraph>()) {
94 while (max_flow_test.augmentOnBlockingFlow2()) {
95 std::cout << max_flow_test.flowValue() << std::endl;
97 std::cout << "max flow value: " << max_flow_test.flowValue() << std::endl;
98 std::cout << "elapsed time: " << ts << std::endl;
99 FOR_EACH_LOC(stGW::EdgeIt, e, stgw) {
100 if (flow[e]) std::cout << e << std::endl;
102 std::cout << std::endl;
105 stGW::EdgeMap<int> pre_flow(stgw);
106 MaxFlow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
107 pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, pre_flow/*, true*/);
109 std::cout << "pre flow value: " << max_flow_test.flowValue() << std::endl;
110 std::cout << "elapsed time: " << ts << std::endl;
111 // FOR_EACH_LOC(stGW::EdgeIt, e, stgw) {
112 // std::cout << e << ": " << pre_flow[e] << "\n";
114 // std::cout << "\n";