COIN-OR::LEMON - Graph Library

Changeset 2149:b437bdee6fd0 in lemon-0.x for lemon


Ignore:
Timestamp:
07/18/06 13:11:54 (18 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2863
Message:

Some tests added to the test file mip_test.cc. One problem is the verbosity of the mip solver in glpk which I couldn't find how to kill.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/mip_glpk.cc

    r2148 r2149  
    3131  }
    3232
    33   void MipGlpk::_colType(int i, ColTypes col_type){
     33  void MipGlpk::_colType(int i, MipGlpk::ColTypes col_type){
    3434    switch (col_type){
    3535      case INTEGER:
     
    3939        lpx_set_col_kind(lp,i,LPX_CV);
    4040        break;
    41       default:
     41    default:;
    4242        //FIXME problem
    4343    }
    4444  }
    4545 
    46   ColTypes MipGlpk::_colType(int i){
     46  MipGlpk::ColTypes MipGlpk::_colType(int i){
    4747    switch (lpx_get_col_kind(lp,i)){
    4848    case LPX_IV:
Note: See TracChangeset for help on using the changeset viewer.