src/work/marci/lp/max_flow_by_lp.cc
changeset 1031 0b7169db694f
parent 1025 3b1ad8bc21da
     1.1 --- a/src/work/marci/lp/max_flow_by_lp.cc	Mon Dec 06 00:30:44 2004 +0000
     1.2 +++ b/src/work/marci/lp/max_flow_by_lp.cc	Mon Dec 06 11:56:10 2004 +0000
     1.3 @@ -10,7 +10,7 @@
     1.4  #include <lemon/preflow.h>
     1.5  #include <augmenting_flow.h>
     1.6  //#include <preflow_res.h>
     1.7 -#include <lp_solver_wrapper.h>
     1.8 +//#include <lp_solver_wrapper_2.h>
     1.9  #include <min_cost_gen_flow.h>
    1.10  
    1.11  // Use a DIMACS max flow file as stdin.
    1.12 @@ -179,7 +179,7 @@
    1.13    MinCostGenFlow<Graph, int, Excess, LCap> 
    1.14      min_cost(g, excess, lcap, cap, flow, cost); 
    1.15    min_cost.feasible();
    1.16 -  min_cost.run();
    1.17 +  min_cost.runByLP();
    1.18  
    1.19    std::cout << "elapsed time: " << ts << std::endl;
    1.20    std::cout << "flow value: "<< flow[e] << std::endl;