Changeset 849:cc3867a7d380 in lemon-0.x for src/work/marci/graph_wrapper_time.cc
- Timestamp:
- 09/14/04 12:09:24 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1148
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/graph_wrapper_time.cc
r784 r849 11 11 #include <hugo/time_measure.h> 12 12 #include <hugo/graph_wrapper.h> 13 #include <hugo/ max_flow.h>13 #include <hugo/preflow.h> 14 14 #include <hugo/dimacs.h> 15 15 #include <hugo/list_graph.h> … … 33 33 ts.reset(); 34 34 35 typedef MaxFlow<Graph, int, FlowMap, FlowMap> MyMaxFlow;36 My MaxFlow max_flow(g, s, t, cap, flow);37 max_flow.run(My MaxFlow::NO_FLOW);35 typedef Preflow<Graph, int, FlowMap, FlowMap> MyPreflow; 36 MyPreflow max_flow(g, s, t, cap, flow); 37 max_flow.run(MyPreflow::NO_FLOW); 38 38 cout << "flow value: " << max_flow.flowValue() << endl; 39 39 cout << ts << endl;
Note: See TracChangeset
for help on using the changeset viewer.