COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
04/29/04 18:25:03 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@633
Message:

preflow, maxflow

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/bipartite_matching_try.cc

    r465 r476  
    1313#include <graph_wrapper.h>
    1414#include <maps.h>
    15 #include <edmonds_karp.h>
    1615#include <preflow.h>
    1716
     
    181180  ts.reset();
    182181  stGW::EdgeMap<int> pre_flow(stgw);
    183   Preflow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
     182  MaxFlow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> >
    184183    pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, pre_flow/*, true*/);
    185184  pre_flow_test.run();
Note: See TracChangeset for help on using the changeset viewer.