lemon/mip_glpk.cc
changeset 2267 3575f17a6e7f
parent 2253 1645f6cc9667
child 2366 bfbdded3763a
     1.1 --- a/lemon/mip_glpk.cc	Fri Oct 27 15:19:33 2006 +0000
     1.2 +++ b/lemon/mip_glpk.cc	Mon Oct 30 11:32:19 2006 +0000
     1.3 @@ -29,7 +29,7 @@
     1.4  
     1.5    void MipGlpk::_colType(int i, MipGlpk::ColTypes col_type){
     1.6      switch (col_type){
     1.7 -      case LEMON_INTEGER:
     1.8 +      case INT:
     1.9  	lpx_set_col_kind(lp,i,LPX_IV);
    1.10  	break;
    1.11        case REAL:
    1.12 @@ -43,7 +43,7 @@
    1.13    MipGlpk::ColTypes MipGlpk::_colType(int i){
    1.14      switch (lpx_get_col_kind(lp,i)){
    1.15      case LPX_IV:
    1.16 -      return LEMON_INTEGER;//Or binary
    1.17 +      return INT;//Or binary
    1.18      case LPX_CV:
    1.19        return REAL;
    1.20      default: