src/work/jacint/max_flow_test.cc
changeset 921 818510fa3d99
parent 757 8680351d0c28
child 986 e997802b855c
equal deleted inserted replaced
2:8cd51f8f0a8e 3:842985be7199
     1 #include <iostream>
     1 #include <iostream>
     2 
     2 
     3 #include <hugo/list_graph.h>
     3 #include <lemon/list_graph.h>
     4 #include <hugo/dimacs.h>
     4 #include <lemon/dimacs.h>
     5 #include <max_flow.h>
     5 #include <max_flow.h>
     6 #include <max_flow_no_stack.h>
     6 #include <max_flow_no_stack.h>
     7 #include <hugo/time_measure.h>
     7 #include <lemon/time_measure.h>
     8 
     8 
     9 using namespace hugo;
     9 using namespace lemon;
    10 
    10 
    11 int main(int, char **) {
    11 int main(int, char **) {
    12  
    12  
    13   typedef ListGraph Graph;
    13   typedef ListGraph Graph;
    14   
    14