src/work/jacint/max_flow_test.cc
changeset 757 8680351d0c28
parent 715 665689d86225
child 921 818510fa3d99
equal deleted inserted replaced
1:25fd33fb14ad 2:8cd51f8f0a8e
    79   /*
    79   /*
    80 
    80 
    81   Graph::EdgeMap<int> flow2(G,0);
    81   Graph::EdgeMap<int> flow2(G,0);
    82   std::cout << "Calling resetFlow() " << std::endl 
    82   std::cout << "Calling resetFlow() " << std::endl 
    83 	    << ts << std::endl;
    83 	    << ts << std::endl;
    84   max_flow_test.resetFlow(flow2);  
    84   max_flow_test.setFlow(flow2);  
    85   ts.reset();
    85   ts.reset();
    86   max_flow_test.preflow(max_flow_test.PRE_FLOW);
    86   max_flow_test.preflow(max_flow_test.PRE_FLOW);
    87   std::cout << "Elapsed time of preflow(PRE_FLOW) starting from the zero flow: " << std::endl 
    87   std::cout << "Elapsed time of preflow(PRE_FLOW) starting from the zero flow: " << std::endl 
    88 	    << ts << std::endl;
    88 	    << ts << std::endl;
    89   
    89