COIN-OR::LEMON - Graph Library

Changeset 757:8680351d0c28 in lemon-0.x for src/work/jacint


Ignore:
Timestamp:
08/05/04 10:53:09 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1017
Message:

resetXxx() changed to setXxx().

Location:
src/work/jacint
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/work/jacint/max_flow_bug.cc

    r748 r757  
    7777
    7878  Graph::EdgeMap<int> flow2(G,0);
    79   std::cout << "Calling resetFlow() " << std::endl
     79  std::cout << "Calling setFlow() " << std::endl
    8080            << ts << std::endl;
    81   max_flow_test.resetFlow(flow2); 
     81  max_flow_test.setFlow(flow2); 
    8282  ts.reset();
    8383  max_flow_test.preflow(max_flow_test.PRE_FLOW);
  • src/work/jacint/max_flow_test.cc

    r715 r757  
    8282  std::cout << "Calling resetFlow() " << std::endl
    8383            << ts << std::endl;
    84   max_flow_test.resetFlow(flow2); 
     84  max_flow_test.setFlow(flow2); 
    8585  ts.reset();
    8686  max_flow_test.preflow(max_flow_test.PRE_FLOW);
Note: See TracChangeset for help on using the changeset viewer.