7 #include <LEDA/graph.h>
8 #include <LEDA/mcb_matching.h>
10 #include <LEDA/graph_gen.h>
12 #include <leda_graph_wrapper.h>
13 #include <list_graph.h>
14 //#include <smart_graph.h>
16 #include <time_measure.h>
17 #include <for_each_macros.h>
18 //#include <bfs_iterator.h>
19 #include <graph_wrapper.h>
21 #include <edmonds_karp.h>
25 * Inicializalja a veletlenszamgeneratort.
26 * Figyelem, ez nem jo igazi random szamokhoz,
27 * erre ne bizzad a titkaidat!
31 unsigned int seed = getpid();
39 * Egy veletlen int-et ad vissza 0 es m-1 kozott.
43 return int( double(m) * rand() / (RAND_MAX + 1.0) );
51 //lg.make_undirected();
52 typedef LedaGraphWrapper<leda::graph> Graph;
56 //typedef UndirListGraph Graph;
59 typedef Graph::Node Node;
60 typedef Graph::NodeIt NodeIt;
61 typedef Graph::Edge Edge;
62 typedef Graph::EdgeIt EdgeIt;
63 typedef Graph::OutEdgeIt OutEdgeIt;
65 std::vector<Graph::Node> s_nodes;
66 std::vector<Graph::Node> t_nodes;
69 std::cout << "number of nodes in the first color class=";
72 std::cout << "number of nodes in the second color class=";
75 std::cout << "number of edges=";
79 for (int i=0; i<a; ++i) s_nodes.push_back(g.addNode());
80 for (int i=0; i<b; ++i) t_nodes.push_back(g.addNode());
83 for(int i=0; i<m; ++i) {
84 g.addEdge(s_nodes[random(a)], t_nodes[random(b)]);
87 Graph::NodeMap<int> ref_map(g, -1);
89 IterableBoolMap< Graph::NodeMap<int> > bipartite_map(ref_map);
90 for (int i=0; i<a; ++i) bipartite_map.insert(s_nodes[i], false);
91 for (int i=0; i<b; ++i) bipartite_map.insert(t_nodes[i], true);
93 typedef BipartiteGraphWrapper<Graph> BGW;
94 BGW bgw(g, bipartite_map);
96 BGW::NodeMap<int> dbyj(bgw);
97 BGW::EdgeMap<int> dbyxcj(bgw);
99 typedef stGraphWrapper<BGW> stGW;
101 ConstMap<stGW::Edge, int> const1map(1);
105 stGW::EdgeMap<int> max_flow(stgw);
106 MaxFlow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
107 max_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, max_flow);
108 // while (max_flow_test.augmentOnShortestPath()) { }
109 typedef ListGraph MutableGraph;
110 // while (max_flow_test.augmentOnBlockingFlow1<MutableGraph>()) {
111 while (max_flow_test.augmentOnBlockingFlow2()) {
112 std::cout << max_flow_test.flowValue() << std::endl;
114 std::cout << "max flow value: " << max_flow_test.flowValue() << std::endl;
115 std::cout << "elapsed time: " << ts << std::endl;
116 // FOR_EACH_LOC(stGW::EdgeIt, e, stgw) {
117 // std::cout << e << ": " << max_flow[e] << "\n";
119 // std::cout << "\n";
122 stGW::EdgeMap<int> pre_flow(stgw);
123 Preflow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
124 pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, pre_flow/*, true*/);
126 std::cout << "pre flow value: " << max_flow_test.flowValue() << std::endl;
127 std::cout << "elapsed time: " << ts << std::endl;
128 // FOR_EACH_LOC(stGW::EdgeIt, e, stgw) {
129 // std::cout << e << ": " << pre_flow[e] << "\n";
131 // std::cout << "\n";
134 leda_list<leda_edge> ml=MAX_CARD_BIPARTITE_MATCHING(lg);
135 // stGW::EdgeMap<int> pre_flow(stgw);
136 //Preflow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
137 // pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, pre_flow, true);
138 //pre_flow_test.run();
139 std::cout << "leda matching value: " << ml.size() << std::endl;
140 std::cout << "elapsed time: " << ts << std::endl;
141 // FOR_EACH_LOC(stGW::EdgeIt, e, stgw) {
142 // std::cout << e << ": " << pre_flow[e] << "\n";
144 // std::cout << "\n";