COIN-OR::LEMON - Graph Library

Ignore:
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/graph_components.h

    r1161 r1175  
    109109
    110110          bool b;
     111          ignore_unused_variable_warning(b);
     112
    111113          b = (ia == ib) && (ia != ib);
    112114          b = (ia == INVALID) && (ib != INVALID);
  • test/bellman_ford_test.cc

    r1160 r1174  
    6666  Arc e;
    6767  Value l;
     68  ignore_unused_variable_warning(l);
    6869  int k=3;
    6970  bool b;
     71  ignore_unused_variable_warning(b);
    7072  BF::DistMap d(gr);
    7173  BF::PredMap p(gr);
     
    148150  Digraph g;
    149151  bool b;
     152  ignore_unused_variable_warning(b);
     153
    150154  bellmanFord(g,LengthMap()).run(Node());
    151155  b = bellmanFord(g,LengthMap()).run(Node(),Node());
  • test/bfs_test.cc

    r956 r1173  
    6262  Arc e;
    6363  int l, i;
     64  ignore_unused_variable_warning(l,i);
    6465  bool b;
    6566  BType::DistMap d(G);
     
    151152  Digraph g;
    152153  bool b;
     154  ignore_unused_variable_warning(b);
     155
    153156  bfs(g).run(Node());
    154157  b=bfs(g).run(Node(),Node());
  • test/circulation_test.cc

    r956 r1173  
    7474  VType v;
    7575  bool b;
     76  ignore_unused_variable_warning(v,b);
    7677
    7778  typedef Circulation<Digraph, CapMap, CapMap, SupplyMap>
  • test/dfs_test.cc

    r1111 r1176  
    6868  int l, i;
    6969  bool b;
     70  ignore_unused_variable_warning(l,i,b);
     71
    7072  DType::DistMap d(G);
    7173  DType::PredMap p(G);
     
    152154  Digraph g;
    153155  bool b;
     156  ignore_unused_variable_warning(b);
     157
    154158  dfs(g).run(Node());
    155159  b=dfs(g).run(Node(),Node());
  • test/dijkstra_test.cc

    r956 r1173  
    6666  int i;
    6767  bool b;
     68  ignore_unused_variable_warning(l,i,b);
     69
    6870  DType::DistMap d(G);
    6971  DType::PredMap p(G);
     
    163165  Digraph g;
    164166  bool b;
     167  ignore_unused_variable_warning(b);
     168
    165169  dijkstra(g,LengthMap()).run(Node());
    166170  b=dijkstra(g,LengthMap()).run(Node(),Node());
  • test/gomory_hu_test.cc

    r956 r1173  
    6969  Value v;
    7070  int d;
     71  ignore_unused_variable_warning(v,d);
    7172
    7273  GomoryHu<Graph, CapMap> gh_test(g, cap);
  • test/hao_orlin_test.cc

    r956 r1173  
    6767  CutMap cut;
    6868  Value v;
     69  ignore_unused_variable_warning(v);
    6970
    7071  HaoOrlin<Digraph, CapMap> ho_test(g, cap);
  • test/matching_test.cc

    r956 r1173  
    146146  MaxMatching<Graph>::Status stat =
    147147    const_mat_test.status(n);
     148  ignore_unused_variable_warning(stat);
    148149  const MaxMatching<Graph>::StatusMap& smap =
    149150    const_mat_test.statusMap();
  • test/min_cost_arborescence_test.cc

    r956 r1173  
    9292  VType c;
    9393  bool b;
     94  ignore_unused_variable_warning(c,b);
    9495  int i;
    9596  CostMap cost;
  • test/preflow_test.cc

    r1029 r1173  
    8787  VType v;
    8888  bool b;
     89  ignore_unused_variable_warning(v,b);
    8990
    9091  typedef Preflow<Digraph, CapMap>
  • test/suurballe_test.cc

    r956 r1173  
    118118  int f;
    119119  VType c;
     120  ignore_unused_variable_warning(f,c);
     121
    120122  c = const_suurb_test.totalLength();
    121123  f = const_suurb_test.flow(e);
Note: See TracChangeset for help on using the changeset viewer.