Changeset 784:a48964a87141 in lemon-0.x
- Timestamp:
- 09/02/04 13:20:49 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1077
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/dimacs.h
r778 r784 72 72 getline(is, str); 73 73 e=g.addEdge(nodes[i], nodes[j]); 74 capacity.update();74 //capacity.update(); 75 75 capacity.set(e, _cap); 76 76 } else { … … 79 79 getline(is, str); 80 80 e=g.addEdge(nodes[i], nodes[j]); 81 capacity.update();81 //capacity.update(); 82 82 capacity.set(e, _cap); 83 cost.update();83 //cost.update(); 84 84 cost.set(e, _cost); 85 85 } else { -
src/work/marci/graph_wrapper_time.cc
r777 r784 36 36 MyMaxFlow max_flow(g, s, t, cap, flow); 37 37 max_flow.run(MyMaxFlow::NO_FLOW); 38 cout << "flow value: " << max_flow.flowValue() << endl; 38 39 cout << ts << endl; 39 40 }
Note: See TracChangeset
for help on using the changeset viewer.