Changeset 459:68e6873f421a in lemon-0.x
- Timestamp:
- 04/28/04 16:17:54 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@609
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/include/dijkstra.h
r456 r459 69 69 public : 70 70 71 Dijkstra( Graph& _G,LengthMap& _length) :71 Dijkstra(const Graph& _G, const LengthMap& _length) : 72 72 G(_G), length(_length), predecessor(_G), pred_node(_G), distance(_G) { } 73 73 -
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.