Changeset 2185:e2bf51eab7f7 in lemon-0.x for lemon/lp_base.h
- Timestamp:
- 08/30/06 18:08:03 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2906
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/lp_base.h
r2148 r2185 122 122 ///\e 123 123 enum SolutionStatus { 124 ///Feasible solution has 'nbeen found (but may exist).124 ///Feasible solution hasn't been found (but may exist). 125 125 126 126 ///\todo NOTFOUND might be a better name. … … 1206 1206 } 1207 1207 1208 /// The status of the MIP problem 1209 SolutionStatus mipStatus() { 1210 return _getMipStatus(); 1211 } 1212 1208 1213 protected: 1209 1214 1210 1215 virtual ColTypes _colType(int col) = 0; 1211 1216 virtual void _colType(int col, ColTypes col_type) = 0; 1217 virtual SolutionStatus _getMipStatus()=0; 1212 1218 1213 1219 };
Note: See TracChangeset
for help on using the changeset viewer.