src/work/marci/preflow_bug.cc
changeset 960 908a1a6f0752
parent 747 be163d94c109
child 986 e997802b855c
equal deleted inserted replaced
0:7ed016d9eeab 1:b35847d94d1f
     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 #include <graph_concept.h>
    13 #include <graph_concept.h>
    14 
    14 
    15 using std::cout;
    15 using std::cout;
    16 using std::endl;
    16 using std::endl;
    17 
    17 
    18 using namespace hugo;
    18 using namespace lemon;
    19 
    19 
    20 // Use a DIMACS min cost flow file as stdin.
    20 // Use a DIMACS min cost flow file as stdin.
    21 // read_dimacs_demo < dimacs_max_flow_file
    21 // read_dimacs_demo < dimacs_max_flow_file
    22 
    22 
    23 int main(int, char **) {
    23 int main(int, char **) {