Changeset 643:f3792d5bb294 in lemon-main
- Timestamp:
- 04/29/09 18:48:18 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/network_simplex.h
r642 r643 1046 1046 _sum_supply += _supply[i]; 1047 1047 } 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; 1050 1050 1051 1051 // Remove non-zero lower bounds
Note: See TracChangeset
for help on using the changeset viewer.