Changeset 1007:7e368d9b67f7 in lemon-main for test
- Timestamp:
- 11/28/12 11:41:40 (12 years ago)
- Branch:
- default
- Children:
- 1008:d216e1c8b3fa, 1015:d32e4453b48c
- Phase:
- public
- Location:
- test
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
test/bfs_test.cc
r585 r1007 62 62 Arc e; 63 63 int l, i; 64 ignore_unused_variable_warning(l,i); 64 65 bool b; 65 66 BType::DistMap d(G); … … 151 152 Digraph g; 152 153 bool b; 154 ignore_unused_variable_warning(b); 155 153 156 bfs(g).run(Node()); 154 157 b=bfs(g).run(Node(),Node()); -
test/circulation_test.cc
r611 r1007 74 74 VType v; 75 75 bool b; 76 ignore_unused_variable_warning(v,b); 76 77 77 78 typedef Circulation<Digraph, CapMap, CapMap, SupplyMap> -
test/dfs_test.cc
r959 r1007 68 68 int l, i; 69 69 bool b; 70 ignore_unused_variable_warning(l,i,b); 71 70 72 DType::DistMap d(G); 71 73 DType::PredMap p(G); … … 152 154 Digraph g; 153 155 bool b; 156 ignore_unused_variable_warning(b); 157 154 158 dfs(g).run(Node()); 155 159 b=dfs(g).run(Node(),Node()); -
test/dijkstra_test.cc
r585 r1007 66 66 int i; 67 67 bool b; 68 ignore_unused_variable_warning(l,i,b); 69 68 70 DType::DistMap d(G); 69 71 DType::PredMap p(G); … … 163 165 Digraph g; 164 166 bool b; 167 ignore_unused_variable_warning(b); 168 165 169 dijkstra(g,LengthMap()).run(Node()); 166 170 b=dijkstra(g,LengthMap()).run(Node(),Node()); -
test/gomory_hu_test.cc
r596 r1007 51 51 Value v; 52 52 int d; 53 ignore_unused_variable_warning(v,d); 53 54 54 55 GomoryHu<Graph, CapMap> gh_test(g, cap); -
test/hao_orlin_test.cc
r597 r1007 67 67 CutMap cut; 68 68 Value v; 69 ignore_unused_variable_warning(v); 69 70 70 71 HaoOrlin<Digraph, CapMap> ho_test(g, cap); -
test/matching_test.cc
r594 r1007 146 146 MaxMatching<Graph>::Status stat = 147 147 const_mat_test.status(n); 148 ignore_unused_variable_warning(stat); 148 149 const MaxMatching<Graph>::StatusMap& smap = 149 150 const_mat_test.statusMap(); -
test/min_cost_arborescence_test.cc
r625 r1007 92 92 VType c; 93 93 bool b; 94 ignore_unused_variable_warning(c,b); 94 95 int i; 95 96 CostMap cost; -
test/preflow_test.cc
r923 r1007 87 87 VType v; 88 88 bool b; 89 ignore_unused_variable_warning(v,b); 89 90 90 91 typedef Preflow<Digraph, CapMap> -
test/suurballe_test.cc
r623 r1007 108 108 int f; 109 109 VType c; 110 ignore_unused_variable_warning(f,c); 111 110 112 c = const_suurb_test.totalLength(); 111 113 f = const_suurb_test.flow(e);
Note: See TracChangeset
for help on using the changeset viewer.