Changeset 1314:9269c76551cf in lemon-0.x for src/lemon/lp_glpk.cc
- Timestamp:
- 04/07/05 11:42:31 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1753
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/lp_glpk.cc
r1312 r1314 258 258 LpGlpk::Value LpGlpk::_getPrimalValue() 259 259 { 260 return 0;260 return lpx_get_obj_val(lp); 261 261 } 262 262 … … 291 291 void LpGlpk::_setMax() 292 292 { 293 } 293 lpx_set_obj_dir(lp, LPX_MAX); 294 } 294 295 void LpGlpk::_setMin() 295 296 { 296 } 297 lpx_set_obj_dir(lp, LPX_MIN); 298 } 297 299 298 300
Note: See TracChangeset
for help on using the changeset viewer.