Changeset 459:68e6873f421a in lemon-0.x for src/work/marci
- Timestamp:
- 04/28/04 16:17:54 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@609
- Location:
- src/work/marci/leda
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/leda/bipartite_matching_leda.cc
r446 r459 122 122 stGW::EdgeMap<int> pre_flow(stgw); 123 123 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*/); 125 125 pre_flow_test.run(); 126 126 std::cout << "pre flow value: " << max_flow_test.flowValue() << std::endl; -
src/work/marci/leda/bipartite_matching_leda_gen.cc
r447 r459 117 117 // stGW::EdgeMap<int> pre_flow(stgw); 118 118 Preflow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> > 119 pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, flow , true);119 pre_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, flow/*, true*/); 120 120 pre_flow_test.run(); 121 121 std::cout << "HUGO pre flow value: " << pre_flow_test.flowValue() << std::endl;
Note: See TracChangeset
for help on using the changeset viewer.