src/work/marci/max_flow_1.cc
changeset 1068 e0b0dcee5e17
parent 762 511200bdb71f
equal deleted inserted replaced
4:044ff9b7814a 5:10f2a1c50402
     1 // -*- c++ -*-
     1 // -*- c++ -*-
     2 #include <iostream>
     2 #include <iostream>
     3 #include <fstream>
     3 #include <fstream>
     4 
     4 
     5 #include <sage_graph.h>
     5 #include <sage_graph.h>
     6 #include <hugo/smart_graph.h>
     6 #include <lemon/smart_graph.h>
     7 #include <hugo/dimacs.h>
     7 #include <lemon/dimacs.h>
     8 #include <hugo/time_measure.h>
     8 #include <lemon/time_measure.h>
     9 //#include <graph_wrapper.h>
     9 //#include <graph_wrapper.h>
    10 #include <hugo/max_flow.h>
    10 #include <lemon/max_flow.h>
    11 //#include <preflow_res.h>
    11 //#include <preflow_res.h>
    12 #include <for_each_macros.h>
    12 #include <for_each_macros.h>
    13 
    13 
    14 using namespace hugo;
    14 using namespace lemon;
    15 
    15 
    16 // Use a DIMACS max flow file as stdin.
    16 // Use a DIMACS max flow file as stdin.
    17 // read_dimacs_demo < dimacs_max_flow_file
    17 // read_dimacs_demo < dimacs_max_flow_file
    18 
    18 
    19 
    19