COIN-OR::LEMON - Graph Library

Changeset 690:f3792d5bb294 in lemon


Ignore:
Timestamp:
04/29/09 18:48:18 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Resolve gcc-4.3 warning in lemon/network_simplex.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/network_simplex.h

    r689 r690  
    10461046        _sum_supply += _supply[i];
    10471047      }
    1048       if ( !(_stype == GEQ && _sum_supply <= 0 ||
    1049              _stype == LEQ && _sum_supply >= 0) ) return false;
     1048      if ( !((_stype == GEQ && _sum_supply <= 0) ||
     1049             (_stype == LEQ && _sum_supply >= 0)) ) return false;
    10501050
    10511051      // Remove non-zero lower bounds
Note: See TracChangeset for help on using the changeset viewer.