src/work/marci/bipartite_matching_demo.cc
changeset 921 818510fa3d99
parent 771 ad7dff9ee2fd
equal deleted inserted replaced
0:24e8247b2aa4 1:21508b8807c8
     4 #include <vector>
     4 #include <vector>
     5 
     5 
     6 #include <sage_graph.h>
     6 #include <sage_graph.h>
     7 //#include <smart_graph.h>
     7 //#include <smart_graph.h>
     8 //#include <dimacs.h>
     8 //#include <dimacs.h>
     9 #include <hugo/time_measure.h>
     9 #include <lemon/time_measure.h>
    10 #include <for_each_macros.h>
    10 #include <for_each_macros.h>
    11 #include <bfs_dfs.h>
    11 #include <bfs_dfs.h>
    12 #include <bipartite_graph_wrapper.h>
    12 #include <bipartite_graph_wrapper.h>
    13 #include <hugo/maps.h>
    13 #include <lemon/maps.h>
    14 #include <hugo/max_flow.h>
    14 #include <lemon/max_flow.h>
    15 #include <graph_gen.h>
    15 #include <graph_gen.h>
    16 #include <max_bipartite_matching.h>
    16 #include <max_bipartite_matching.h>
    17 
    17 
    18 using namespace hugo;
    18 using namespace lemon;
    19 
    19 
    20 using std::cin;
    20 using std::cin;
    21 using std::cout;
    21 using std::cout;
    22 using std::endl;
    22 using std::endl;
    23 
    23