Changeset 1397:30828157ae80 in lemon-0.x
- Timestamp:
- 04/29/05 10:21:03 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1857
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/lp_base.h
r1381 r1397 21 21 #include<map> 22 22 #include<limits> 23 #include< math.h>23 #include<cmath> 24 24 25 25 #include<lemon/utility.h> … … 402 402 bool lowerBounded() const { 403 403 using namespace std; 404 return isfinite(_lb);404 return finite(_lb); 405 405 } 406 406 ///Is the constraint upper bounded? 407 407 bool upperBounded() const { 408 408 using namespace std; 409 return isfinite(_ub);409 return finite(_ub); 410 410 } 411 411 };
Note: See TracChangeset
for help on using the changeset viewer.