COIN-OR::LEMON - Graph Library

Changes in / [1118:ce1533650f7d:1116:07cd9a2d20e0] in lemon-main


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/network_simplex.h

    r1118 r1104  
    937937        _node_id[n] = i;
    938938      }
    939       if (_arc_mixing && _node_num > 1) {
     939      if (_arc_mixing) {
    940940        // Store the arcs in a mixed order
    941941        const int skip = std::max(_arc_num / _node_num, 3);
  • test/min_cost_flow_test.cc

    r1118 r1092  
    396396  checkMcf(mcf3, mcf3.run(param), neg2_gr, neg2_l, neg2_u, neg2_c, neg2_s,
    397397           mcf3.OPTIMAL, true,     -300, test_str + "-18", GEQ);
    398 
    399   // Tests for empty graph
    400   Digraph gr0;
    401   MCF mcf0(gr0);
    402   mcf0.run(param);
    403   check(mcf0.totalCost() == 0, "Wrong total cost"); 
    404398}
    405399
Note: See TracChangeset for help on using the changeset viewer.