Changeset 375:d9a58896ab43 in lemon-0.x for src/work/jacint/preflow.cc
- Timestamp:
- 04/22/04 17:58:08 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@505
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/jacint/preflow.cc
r374 r375 33 33 34 34 Graph::EdgeMap<int> flow2(G); 35 Preflow<Graph, int> max_flow_test2(G, s, t, cap, flow , 1,0);35 Preflow<Graph, int> max_flow_test2(G, s, t, cap, flow2, 1,0); 36 36 ts.reset(); 37 37 max_flow_test2.run(); 38 std::cout << "elapsed time : " << ts << std::endl;38 std::cout << "elapsed time without res: " << ts << std::endl; 39 39 40 40 Graph::NodeMap<bool> cut(G);
Note: See TracChangeset
for help on using the changeset viewer.