Changeset 1114 for stable/1.5
- Timestamp:
- Sep 24, 2007 11:57:31 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/1.5/Clp/src/ClpSimplex.cpp
r1113 r1114 3441 3441 } 3442 3442 } 3443 } else if (status==isFixed&&upper_[i]>lower_[i]) { 3444 // was fixed - not now 3445 if (solution_[i]<=lower_[i]) { 3446 setStatus(i,atLowerBound); 3447 } else if (solution_[i]>=upper_[i]) { 3448 setStatus(i,atUpperBound); 3449 } else { 3450 setStatus(i,superBasic); 3451 } 3443 3452 } 3444 3453 }
Note: See TracChangeset
for help on using the changeset viewer.