COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
04/28/04 16:17:54 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@609
Message:

dijstra const ref, misc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/leda/bipartite_matching_leda.cc

    r446 r459  
    122122  stGW::EdgeMap<int> pre_flow(stgw);
    123123  Preflow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
    124     pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, pre_flow, true);
     124    pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, pre_flow/*, true*/);
    125125  pre_flow_test.run();
    126126  std::cout << "pre flow value: " << max_flow_test.flowValue() << std::endl;
Note: See TracChangeset for help on using the changeset viewer.