Changeset 2267:3575f17a6e7f in lemon-0.x for lemon/mip_glpk.cc
- Timestamp:
- 10/30/06 12:32:19 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3025
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/mip_glpk.cc
r2253 r2267 30 30 void MipGlpk::_colType(int i, MipGlpk::ColTypes col_type){ 31 31 switch (col_type){ 32 case LEMON_INTEGER:32 case INT: 33 33 lpx_set_col_kind(lp,i,LPX_IV); 34 34 break; … … 44 44 switch (lpx_get_col_kind(lp,i)){ 45 45 case LPX_IV: 46 return LEMON_INTEGER;//Or binary46 return INT;//Or binary 47 47 case LPX_CV: 48 48 return REAL;
Note: See TracChangeset
for help on using the changeset viewer.