Changeset 985:b9887ae63df0 in lemon-1.2 for test/preflow_test.cc
- Timestamp:
- 08/07/13 07:09:31 (11 years ago)
- Branch:
- 1.2
- Parents:
- 981:2c2e8df67ddc (diff), 984:a337a0dd3f75 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/preflow_test.cc
r972 r985 87 87 VType v; 88 88 bool b; 89 ignore_unused_variable_warning(v,b);89 ::lemon::ignore_unused_variable_warning(v,b); 90 90 91 91 typedef Preflow<Digraph, CapMap> … … 121 121 const_preflow_test.minCutMap(cut); 122 122 123 ignore_unused_variable_warning(fm);123 ::lemon::ignore_unused_variable_warning(fm); 124 124 } 125 125 -
test/preflow_test.cc
r983 r985 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-201 05 * Copyright (C) 2003-2011 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 161 161 { 162 162 DIGRAPH_TYPEDEFS(SmartDigraph); 163 163 164 164 SmartDigraph g; 165 165 SmartDigraph::ArcMap<int> cap(g),iflow(g); … … 273 273 274 274 initFlowTest(); 275 275 276 276 return 0; 277 277 }
Note: See TracChangeset
for help on using the changeset viewer.