Changeset 476:cfe550761745 in lemon-0.x for src/work/marci/bipartite_matching_try.cc
- Timestamp:
- 04/29/04 18:25:03 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@633
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/bipartite_matching_try.cc
r465 r476 13 13 #include <graph_wrapper.h> 14 14 #include <maps.h> 15 #include <edmonds_karp.h>16 15 #include <preflow.h> 17 16 … … 181 180 ts.reset(); 182 181 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> > 184 183 pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, pre_flow/*, true*/); 185 184 pre_flow_test.run();
Note: See TracChangeset
for help on using the changeset viewer.