COIN-OR::LEMON - Graph Library

Changeset 2267:3575f17a6e7f in lemon-0.x for lemon/mip_glpk.cc


Ignore:
Timestamp:
10/30/06 12:32:19 (17 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3025
Message:

LEMON_INTEGER -> INT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/mip_glpk.cc

    r2253 r2267  
    3030  void MipGlpk::_colType(int i, MipGlpk::ColTypes col_type){
    3131    switch (col_type){
    32       case LEMON_INTEGER:
     32      case INT:
    3333        lpx_set_col_kind(lp,i,LPX_IV);
    3434        break;
     
    4444    switch (lpx_get_col_kind(lp,i)){
    4545    case LPX_IV:
    46       return LEMON_INTEGER;//Or binary
     46      return INT;//Or binary
    4747    case LPX_CV:
    4848      return REAL;
Note: See TracChangeset for help on using the changeset viewer.