lemon/glpk.cc
author Balazs Dezso <deba@inf.elte.hu>
Mon, 23 Feb 2009 22:54:25 +0100
changeset 525 0fec6a017ead
parent 462 9b082b3fb33f
child 526 ba124394367a
permissions -rw-r--r--
Fix GLPK tests (#213)
     1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
     2  *
     3  * This file is a part of LEMON, a generic C++ optimization library.
     4  *
     5  * Copyright (C) 2003-2008
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     8  *
     9  * Permission to use, modify and distribute this software is granted
    10  * provided that this copyright notice appears in all copies. For
    11  * precise terms see the accompanying LICENSE file.
    12  *
    13  * This software is provided "AS IS" with no warranty of any kind,
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    16  *
    17  */
    18 
    19 ///\file
    20 ///\brief Implementation of the LEMON GLPK LP and MIP solver interface.
    21 
    22 #include <lemon/glpk.h>
    23 #include <glpk.h>
    24 
    25 #include <lemon/assert.h>
    26 
    27 namespace lemon {
    28 
    29   // GlpkBase members
    30 
    31   GlpkBase::GlpkBase() : LpBase() {
    32     lp = glp_create_prob();
    33     glp_create_index(lp);
    34   }
    35 
    36   GlpkBase::GlpkBase(const GlpkBase &other) : LpBase() {
    37     lp = glp_create_prob();
    38     glp_copy_prob(lp, other.lp, GLP_ON);
    39     glp_create_index(lp);
    40     rows = other.rows;
    41     cols = other.cols;
    42   }
    43 
    44   GlpkBase::~GlpkBase() {
    45     glp_delete_prob(lp);
    46   }
    47 
    48   int GlpkBase::_addCol() {
    49     int i = glp_add_cols(lp, 1);
    50     glp_set_col_bnds(lp, i, GLP_FR, 0.0, 0.0);
    51     return i;
    52   }
    53 
    54   int GlpkBase::_addRow() {
    55     int i = glp_add_rows(lp, 1);
    56     glp_set_row_bnds(lp, i, GLP_FR, 0.0, 0.0);
    57     return i;
    58   }
    59 
    60   void GlpkBase::_eraseCol(int i) {
    61     int ca[2];
    62     ca[1] = i;
    63     glp_del_cols(lp, 1, ca);
    64   }
    65 
    66   void GlpkBase::_eraseRow(int i) {
    67     int ra[2];
    68     ra[1] = i;
    69     glp_del_rows(lp, 1, ra);
    70   }
    71 
    72   void GlpkBase::_eraseColId(int i) {
    73     cols.eraseIndex(i);
    74     cols.shiftIndices(i);
    75   }
    76 
    77   void GlpkBase::_eraseRowId(int i) {
    78     rows.eraseIndex(i);
    79     rows.shiftIndices(i);
    80   }
    81 
    82   void GlpkBase::_getColName(int c, std::string& name) const {
    83     const char *str = glp_get_col_name(lp, c);
    84     if (str) name = str;
    85     else name.clear();
    86   }
    87 
    88   void GlpkBase::_setColName(int c, const std::string & name) {
    89     glp_set_col_name(lp, c, const_cast<char*>(name.c_str()));
    90 
    91   }
    92 
    93   int GlpkBase::_colByName(const std::string& name) const {
    94     int k = glp_find_col(lp, const_cast<char*>(name.c_str()));
    95     return k > 0 ? k : -1;
    96   }
    97 
    98   void GlpkBase::_getRowName(int r, std::string& name) const {
    99     const char *str = glp_get_row_name(lp, r);
   100     if (str) name = str;
   101     else name.clear();
   102   }
   103 
   104   void GlpkBase::_setRowName(int r, const std::string & name) {
   105     glp_set_row_name(lp, r, const_cast<char*>(name.c_str()));
   106 
   107   }
   108 
   109   int GlpkBase::_rowByName(const std::string& name) const {
   110     int k = glp_find_row(lp, const_cast<char*>(name.c_str()));
   111     return k > 0 ? k : -1;
   112   }
   113 
   114   void GlpkBase::_setRowCoeffs(int i, ExprIterator b, ExprIterator e) {
   115     std::vector<int> indexes;
   116     std::vector<Value> values;
   117 
   118     indexes.push_back(0);
   119     values.push_back(0);
   120 
   121     for(ExprIterator it = b; it != e; ++it) {
   122       indexes.push_back(it->first);
   123       values.push_back(it->second);
   124     }
   125 
   126     glp_set_mat_row(lp, i, values.size() - 1,
   127                     &indexes.front(), &values.front());
   128   }
   129 
   130   void GlpkBase::_getRowCoeffs(int ix, InsertIterator b) const {
   131     int length = glp_get_mat_row(lp, ix, 0, 0);
   132 
   133     std::vector<int> indexes(length + 1);
   134     std::vector<Value> values(length + 1);
   135 
   136     glp_get_mat_row(lp, ix, &indexes.front(), &values.front());
   137 
   138     for (int i = 1; i <= length; ++i) {
   139       *b = std::make_pair(indexes[i], values[i]);
   140       ++b;
   141     }
   142   }
   143 
   144   void GlpkBase::_setColCoeffs(int ix, ExprIterator b,
   145                                      ExprIterator e) {
   146 
   147     std::vector<int> indexes;
   148     std::vector<Value> values;
   149 
   150     indexes.push_back(0);
   151     values.push_back(0);
   152 
   153     for(ExprIterator it = b; it != e; ++it) {
   154       indexes.push_back(it->first);
   155       values.push_back(it->second);
   156     }
   157 
   158     glp_set_mat_col(lp, ix, values.size() - 1,
   159                     &indexes.front(), &values.front());
   160   }
   161 
   162   void GlpkBase::_getColCoeffs(int ix, InsertIterator b) const {
   163     int length = glp_get_mat_col(lp, ix, 0, 0);
   164 
   165     std::vector<int> indexes(length + 1);
   166     std::vector<Value> values(length + 1);
   167 
   168     glp_get_mat_col(lp, ix, &indexes.front(), &values.front());
   169 
   170     for (int i = 1; i  <= length; ++i) {
   171       *b = std::make_pair(indexes[i], values[i]);
   172       ++b;
   173     }
   174   }
   175 
   176   void GlpkBase::_setCoeff(int ix, int jx, Value value) {
   177 
   178     if (glp_get_num_cols(lp) < glp_get_num_rows(lp)) {
   179 
   180       int length = glp_get_mat_row(lp, ix, 0, 0);
   181 
   182       std::vector<int> indexes(length + 2);
   183       std::vector<Value> values(length + 2);
   184 
   185       glp_get_mat_row(lp, ix, &indexes.front(), &values.front());
   186 
   187       //The following code does not suppose that the elements of the
   188       //array indexes are sorted
   189       bool found = false;
   190       for (int i = 1; i  <= length; ++i) {
   191         if (indexes[i] == jx) {
   192           found = true;
   193           values[i] = value;
   194           break;
   195         }
   196       }
   197       if (!found) {
   198         ++length;
   199         indexes[length] = jx;
   200         values[length] = value;
   201       }
   202 
   203       glp_set_mat_row(lp, ix, length, &indexes.front(), &values.front());
   204 
   205     } else {
   206 
   207       int length = glp_get_mat_col(lp, jx, 0, 0);
   208 
   209       std::vector<int> indexes(length + 2);
   210       std::vector<Value> values(length + 2);
   211 
   212       glp_get_mat_col(lp, jx, &indexes.front(), &values.front());
   213 
   214       //The following code does not suppose that the elements of the
   215       //array indexes are sorted
   216       bool found = false;
   217       for (int i = 1; i <= length; ++i) {
   218         if (indexes[i] == ix) {
   219           found = true;
   220           values[i] = value;
   221           break;
   222         }
   223       }
   224       if (!found) {
   225         ++length;
   226         indexes[length] = ix;
   227         values[length] = value;
   228       }
   229 
   230       glp_set_mat_col(lp, jx, length, &indexes.front(), &values.front());
   231     }
   232 
   233   }
   234 
   235   GlpkBase::Value GlpkBase::_getCoeff(int ix, int jx) const {
   236 
   237     int length = glp_get_mat_row(lp, ix, 0, 0);
   238 
   239     std::vector<int> indexes(length + 1);
   240     std::vector<Value> values(length + 1);
   241 
   242     glp_get_mat_row(lp, ix, &indexes.front(), &values.front());
   243 
   244     for (int i = 1; i  <= length; ++i) {
   245       if (indexes[i] == jx) {
   246         return values[i];
   247       }
   248     }
   249 
   250     return 0;
   251   }
   252 
   253   void GlpkBase::_setColLowerBound(int i, Value lo) {
   254     LEMON_ASSERT(lo != INF, "Invalid bound");
   255 
   256     int b = glp_get_col_type(lp, i);
   257     double up = glp_get_col_ub(lp, i);
   258     if (lo == -INF) {
   259       switch (b) {
   260       case GLP_FR:
   261       case GLP_LO:
   262         glp_set_col_bnds(lp, i, GLP_FR, lo, up);
   263         break;
   264       case GLP_UP:
   265         break;
   266       case GLP_DB:
   267       case GLP_FX:
   268         glp_set_col_bnds(lp, i, GLP_UP, lo, up);
   269         break;
   270       default:
   271         break;
   272       }
   273     } else {
   274       switch (b) {
   275       case GLP_FR:
   276       case GLP_LO:
   277         glp_set_col_bnds(lp, i, GLP_LO, lo, up);
   278         break;
   279       case GLP_UP:
   280       case GLP_DB:
   281       case GLP_FX:
   282         if (lo == up)
   283           glp_set_col_bnds(lp, i, GLP_FX, lo, up);
   284         else
   285           glp_set_col_bnds(lp, i, GLP_DB, lo, up);
   286         break;
   287       default:
   288         break;
   289       }
   290     }
   291   }
   292 
   293   GlpkBase::Value GlpkBase::_getColLowerBound(int i) const {
   294     int b = glp_get_col_type(lp, i);
   295     switch (b) {
   296     case GLP_LO:
   297     case GLP_DB:
   298     case GLP_FX:
   299       return glp_get_col_lb(lp, i);
   300     default:
   301       return -INF;
   302     }
   303   }
   304 
   305   void GlpkBase::_setColUpperBound(int i, Value up) {
   306     LEMON_ASSERT(up != -INF, "Invalid bound");
   307 
   308     int b = glp_get_col_type(lp, i);
   309     double lo = glp_get_col_lb(lp, i);
   310     if (up == INF) {
   311       switch (b) {
   312       case GLP_FR:
   313       case GLP_LO:
   314         break;
   315       case GLP_UP:
   316         glp_set_col_bnds(lp, i, GLP_FR, lo, up);
   317         break;
   318       case GLP_DB:
   319       case GLP_FX:
   320         glp_set_col_bnds(lp, i, GLP_LO, lo, up);
   321         break;
   322       default:
   323         break;
   324       }
   325     } else {
   326       switch (b) {
   327       case GLP_FR:
   328         glp_set_col_bnds(lp, i, GLP_UP, lo, up);
   329         break;
   330       case GLP_UP:
   331         glp_set_col_bnds(lp, i, GLP_UP, lo, up);
   332         break;
   333       case GLP_LO:
   334       case GLP_DB:
   335       case GLP_FX:
   336         if (lo == up)
   337           glp_set_col_bnds(lp, i, GLP_FX, lo, up);
   338         else
   339           glp_set_col_bnds(lp, i, GLP_DB, lo, up);
   340         break;
   341       default:
   342         break;
   343       }
   344     }
   345 
   346   }
   347 
   348   GlpkBase::Value GlpkBase::_getColUpperBound(int i) const {
   349     int b = glp_get_col_type(lp, i);
   350       switch (b) {
   351       case GLP_UP:
   352       case GLP_DB:
   353       case GLP_FX:
   354         return glp_get_col_ub(lp, i);
   355       default:
   356         return INF;
   357       }
   358   }
   359 
   360   void GlpkBase::_setRowLowerBound(int i, Value lo) {
   361     LEMON_ASSERT(lo != INF, "Invalid bound");
   362 
   363     int b = glp_get_row_type(lp, i);
   364     double up = glp_get_row_ub(lp, i);
   365     if (lo == -INF) {
   366       switch (b) {
   367       case GLP_FR:
   368       case GLP_LO:
   369         glp_set_row_bnds(lp, i, GLP_FR, lo, up);
   370         break;
   371       case GLP_UP:
   372         break;
   373       case GLP_DB:
   374       case GLP_FX:
   375         glp_set_row_bnds(lp, i, GLP_UP, lo, up);
   376         break;
   377       default:
   378         break;
   379       }
   380     } else {
   381       switch (b) {
   382       case GLP_FR:
   383       case GLP_LO:
   384         glp_set_row_bnds(lp, i, GLP_LO, lo, up);
   385         break;
   386       case GLP_UP:
   387       case GLP_DB:
   388       case GLP_FX:
   389         if (lo == up)
   390           glp_set_row_bnds(lp, i, GLP_FX, lo, up);
   391         else
   392           glp_set_row_bnds(lp, i, GLP_DB, lo, up);
   393         break;
   394       default:
   395         break;
   396       }
   397     }
   398 
   399   }
   400 
   401   GlpkBase::Value GlpkBase::_getRowLowerBound(int i) const {
   402     int b = glp_get_row_type(lp, i);
   403     switch (b) {
   404     case GLP_LO:
   405     case GLP_DB:
   406     case GLP_FX:
   407       return glp_get_row_lb(lp, i);
   408     default:
   409       return -INF;
   410     }
   411   }
   412 
   413   void GlpkBase::_setRowUpperBound(int i, Value up) {
   414     LEMON_ASSERT(up != -INF, "Invalid bound");
   415 
   416     int b = glp_get_row_type(lp, i);
   417     double lo = glp_get_row_lb(lp, i);
   418     if (up == INF) {
   419       switch (b) {
   420       case GLP_FR:
   421       case GLP_LO:
   422         break;
   423       case GLP_UP:
   424         glp_set_row_bnds(lp, i, GLP_FR, lo, up);
   425         break;
   426       case GLP_DB:
   427       case GLP_FX:
   428         glp_set_row_bnds(lp, i, GLP_LO, lo, up);
   429         break;
   430       default:
   431         break;
   432       }
   433     } else {
   434       switch (b) {
   435       case GLP_FR:
   436         glp_set_row_bnds(lp, i, GLP_UP, lo, up);
   437         break;
   438       case GLP_UP:
   439         glp_set_row_bnds(lp, i, GLP_UP, lo, up);
   440         break;
   441       case GLP_LO:
   442       case GLP_DB:
   443       case GLP_FX:
   444         if (lo == up)
   445           glp_set_row_bnds(lp, i, GLP_FX, lo, up);
   446         else
   447           glp_set_row_bnds(lp, i, GLP_DB, lo, up);
   448         break;
   449       default:
   450         break;
   451       }
   452     }
   453   }
   454 
   455   GlpkBase::Value GlpkBase::_getRowUpperBound(int i) const {
   456     int b = glp_get_row_type(lp, i);
   457     switch (b) {
   458     case GLP_UP:
   459     case GLP_DB:
   460     case GLP_FX:
   461       return glp_get_row_ub(lp, i);
   462     default:
   463       return INF;
   464     }
   465   }
   466 
   467   void GlpkBase::_setObjCoeffs(ExprIterator b, ExprIterator e) {
   468     for (int i = 1; i <= glp_get_num_cols(lp); ++i) {
   469       glp_set_obj_coef(lp, i, 0.0);
   470     }
   471     for (ExprIterator it = b; it != e; ++it) {
   472       glp_set_obj_coef(lp, it->first, it->second);
   473     }
   474   }
   475 
   476   void GlpkBase::_getObjCoeffs(InsertIterator b) const {
   477     for (int i = 1; i <= glp_get_num_cols(lp); ++i) {
   478       Value val = glp_get_obj_coef(lp, i);
   479       if (val != 0.0) {
   480         *b = std::make_pair(i, val);
   481         ++b;
   482       }
   483     }
   484   }
   485 
   486   void GlpkBase::_setObjCoeff(int i, Value obj_coef) {
   487     //i = 0 means the constant term (shift)
   488     glp_set_obj_coef(lp, i, obj_coef);
   489   }
   490 
   491   GlpkBase::Value GlpkBase::_getObjCoeff(int i) const {
   492     //i = 0 means the constant term (shift)
   493     return glp_get_obj_coef(lp, i);
   494   }
   495 
   496   void GlpkBase::_setSense(GlpkBase::Sense sense) {
   497     switch (sense) {
   498     case MIN:
   499       glp_set_obj_dir(lp, GLP_MIN);
   500       break;
   501     case MAX:
   502       glp_set_obj_dir(lp, GLP_MAX);
   503       break;
   504     }
   505   }
   506 
   507   GlpkBase::Sense GlpkBase::_getSense() const {
   508     switch(glp_get_obj_dir(lp)) {
   509     case GLP_MIN:
   510       return MIN;
   511     case GLP_MAX:
   512       return MAX;
   513     default:
   514       LEMON_ASSERT(false, "Wrong sense");
   515       return GlpkBase::Sense();
   516     }
   517   }
   518 
   519   void GlpkBase::_clear() {
   520     glp_erase_prob(lp);
   521     rows.clear();
   522     cols.clear();
   523   }
   524 
   525   void GlpkBase::freeEnv() {
   526     glp_free_env();
   527   }
   528 
   529   // GlpkLp members
   530 
   531   GlpkLp::GlpkLp()
   532     : LpBase(), GlpkBase(), LpSolver() {
   533     messageLevel(MESSAGE_NO_OUTPUT);
   534   }
   535 
   536   GlpkLp::GlpkLp(const GlpkLp& other)
   537     : LpBase(other), GlpkBase(other), LpSolver(other) {
   538     messageLevel(MESSAGE_NO_OUTPUT);
   539   }
   540 
   541   GlpkLp* GlpkLp::_newSolver() const { return new GlpkLp; }
   542   GlpkLp* GlpkLp::_cloneSolver() const { return new GlpkLp(*this); }
   543 
   544   const char* GlpkLp::_solverName() const { return "GlpkLp"; }
   545 
   546   void GlpkLp::_clear_temporals() {
   547     _primal_ray.clear();
   548     _dual_ray.clear();
   549   }
   550 
   551   GlpkLp::SolveExitStatus GlpkLp::_solve() {
   552     return solvePrimal();
   553   }
   554 
   555   GlpkLp::SolveExitStatus GlpkLp::solvePrimal() {
   556     _clear_temporals();
   557 
   558     glp_smcp smcp;
   559     glp_init_smcp(&smcp);
   560 
   561     switch (_message_level) {
   562     case MESSAGE_NO_OUTPUT:
   563       smcp.msg_lev = GLP_MSG_OFF;
   564       break;
   565     case MESSAGE_ERROR_MESSAGE:
   566       smcp.msg_lev = GLP_MSG_ERR;
   567       break;
   568     case MESSAGE_NORMAL_OUTPUT:
   569       smcp.msg_lev = GLP_MSG_ON;
   570       break;
   571     case MESSAGE_FULL_OUTPUT:
   572       smcp.msg_lev = GLP_MSG_ALL;
   573       break;
   574     }
   575 
   576     if (glp_simplex(lp, &smcp) != 0) return UNSOLVED;
   577     return SOLVED;
   578   }
   579 
   580   GlpkLp::SolveExitStatus GlpkLp::solveDual() {
   581     _clear_temporals();
   582 
   583     glp_smcp smcp;
   584     glp_init_smcp(&smcp);
   585 
   586     switch (_message_level) {
   587     case MESSAGE_NO_OUTPUT:
   588       smcp.msg_lev = GLP_MSG_OFF;
   589       break;
   590     case MESSAGE_ERROR_MESSAGE:
   591       smcp.msg_lev = GLP_MSG_ERR;
   592       break;
   593     case MESSAGE_NORMAL_OUTPUT:
   594       smcp.msg_lev = GLP_MSG_ON;
   595       break;
   596     case MESSAGE_FULL_OUTPUT:
   597       smcp.msg_lev = GLP_MSG_ALL;
   598       break;
   599     }
   600     smcp.meth = GLP_DUAL;
   601 
   602     if (glp_simplex(lp, &smcp) != 0) return UNSOLVED;
   603     return SOLVED;
   604   }
   605 
   606   GlpkLp::Value GlpkLp::_getPrimal(int i) const {
   607     return glp_get_col_prim(lp, i);
   608   }
   609 
   610   GlpkLp::Value GlpkLp::_getDual(int i) const {
   611     return glp_get_row_dual(lp, i);
   612   }
   613 
   614   GlpkLp::Value GlpkLp::_getPrimalValue() const {
   615     return glp_get_obj_val(lp);
   616   }
   617 
   618   GlpkLp::VarStatus GlpkLp::_getColStatus(int i) const {
   619     switch (glp_get_col_stat(lp, i)) {
   620     case GLP_BS:
   621       return BASIC;
   622     case GLP_UP:
   623       return UPPER;
   624     case GLP_LO:
   625       return LOWER;
   626     case GLP_NF:
   627       return FREE;
   628     case GLP_NS:
   629       return FIXED;
   630     default:
   631       LEMON_ASSERT(false, "Wrong column status");
   632       return GlpkLp::VarStatus();
   633     }
   634   }
   635 
   636   GlpkLp::VarStatus GlpkLp::_getRowStatus(int i) const {
   637     switch (glp_get_row_stat(lp, i)) {
   638     case GLP_BS:
   639       return BASIC;
   640     case GLP_UP:
   641       return UPPER;
   642     case GLP_LO:
   643       return LOWER;
   644     case GLP_NF:
   645       return FREE;
   646     case GLP_NS:
   647       return FIXED;
   648     default:
   649       LEMON_ASSERT(false, "Wrong row status");
   650       return GlpkLp::VarStatus();
   651     }
   652   }
   653 
   654   GlpkLp::Value GlpkLp::_getPrimalRay(int i) const {
   655     if (_primal_ray.empty()) {
   656       int row_num = glp_get_num_rows(lp);
   657       int col_num = glp_get_num_cols(lp);
   658 
   659       _primal_ray.resize(col_num + 1, 0.0);
   660 
   661       int index = glp_get_unbnd_ray(lp);
   662       if (index != 0) {
   663         // The primal ray is found in primal simplex second phase
   664         LEMON_ASSERT((index <= row_num ? glp_get_row_stat(lp, index) :
   665                       glp_get_col_stat(lp, index - row_num)) != GLP_BS,
   666                      "Wrong primal ray");
   667 
   668         bool negate = glp_get_obj_dir(lp) == GLP_MAX;
   669 
   670         if (index > row_num) {
   671           _primal_ray[index - row_num] = 1.0;
   672           if (glp_get_col_dual(lp, index - row_num) > 0) {
   673             negate = !negate;
   674           }
   675         } else {
   676           if (glp_get_row_dual(lp, index) > 0) {
   677             negate = !negate;
   678           }
   679         }
   680 
   681         std::vector<int> ray_indexes(row_num + 1);
   682         std::vector<Value> ray_values(row_num + 1);
   683         int ray_length = glp_eval_tab_col(lp, index, &ray_indexes.front(),
   684                                           &ray_values.front());
   685 
   686         for (int i = 1; i <= ray_length; ++i) {
   687           if (ray_indexes[i] > row_num) {
   688             _primal_ray[ray_indexes[i] - row_num] = ray_values[i];
   689           }
   690         }
   691 
   692         if (negate) {
   693           for (int i = 1; i <= col_num; ++i) {
   694             _primal_ray[i] = - _primal_ray[i];
   695           }
   696         }
   697       } else {
   698         for (int i = 1; i <= col_num; ++i) {
   699           _primal_ray[i] = glp_get_col_prim(lp, i);
   700         }
   701       }
   702     }
   703     return _primal_ray[i];
   704   }
   705 
   706   GlpkLp::Value GlpkLp::_getDualRay(int i) const {
   707     if (_dual_ray.empty()) {
   708       int row_num = glp_get_num_rows(lp);
   709 
   710       _dual_ray.resize(row_num + 1, 0.0);
   711 
   712       int index = glp_get_unbnd_ray(lp);
   713       if (index != 0) {
   714         // The dual ray is found in dual simplex second phase
   715         LEMON_ASSERT((index <= row_num ? glp_get_row_stat(lp, index) :
   716                       glp_get_col_stat(lp, index - row_num)) == GLP_BS,
   717 
   718                      "Wrong dual ray");
   719 
   720         int idx;
   721         bool negate = false;
   722 
   723         if (index > row_num) {
   724           idx = glp_get_col_bind(lp, index - row_num);
   725           if (glp_get_col_prim(lp, index - row_num) >
   726               glp_get_col_ub(lp, index - row_num)) {
   727             negate = true;
   728           }
   729         } else {
   730           idx = glp_get_row_bind(lp, index);
   731           if (glp_get_row_prim(lp, index) > glp_get_row_ub(lp, index)) {
   732             negate = true;
   733           }
   734         }
   735 
   736         _dual_ray[idx] = negate ?  - 1.0 : 1.0;
   737 
   738         glp_btran(lp, &_dual_ray.front());
   739       } else {
   740         double eps = 1e-7;
   741         // The dual ray is found in primal simplex first phase
   742         // We assume that the glpk minimizes the slack to get feasible solution
   743         for (int i = 1; i <= row_num; ++i) {
   744           int index = glp_get_bhead(lp, i);
   745           if (index <= row_num) {
   746             double res = glp_get_row_prim(lp, index);
   747             if (res > glp_get_row_ub(lp, index) + eps) {
   748               _dual_ray[i] = -1;
   749             } else if (res < glp_get_row_lb(lp, index) - eps) {
   750               _dual_ray[i] = 1;
   751             } else {
   752               _dual_ray[i] = 0;
   753             }
   754             _dual_ray[i] *= glp_get_rii(lp, index);
   755           } else {
   756             double res = glp_get_col_prim(lp, index - row_num);
   757             if (res > glp_get_col_ub(lp, index - row_num) + eps) {
   758               _dual_ray[i] = -1;
   759             } else if (res < glp_get_col_lb(lp, index - row_num) - eps) {
   760               _dual_ray[i] = 1;
   761             } else {
   762               _dual_ray[i] = 0;
   763             }
   764             _dual_ray[i] /= glp_get_sjj(lp, index - row_num);
   765           }
   766         }
   767 
   768         glp_btran(lp, &_dual_ray.front());
   769 
   770         for (int i = 1; i <= row_num; ++i) {
   771           _dual_ray[i] /= glp_get_rii(lp, i);
   772         }
   773       }
   774     }
   775     return _dual_ray[i];
   776   }
   777 
   778   GlpkLp::ProblemType GlpkLp::_getPrimalType() const {
   779     if (glp_get_status(lp) == GLP_OPT)
   780       return OPTIMAL;
   781     switch (glp_get_prim_stat(lp)) {
   782     case GLP_UNDEF:
   783       return UNDEFINED;
   784     case GLP_FEAS:
   785     case GLP_INFEAS:
   786       if (glp_get_dual_stat(lp) == GLP_NOFEAS) {
   787         return UNBOUNDED;
   788       } else {
   789         return UNDEFINED;
   790       }
   791     case GLP_NOFEAS:
   792       return INFEASIBLE;
   793     default:
   794       LEMON_ASSERT(false, "Wrong primal type");
   795       return  GlpkLp::ProblemType();
   796     }
   797   }
   798 
   799   GlpkLp::ProblemType GlpkLp::_getDualType() const {
   800     if (glp_get_status(lp) == GLP_OPT)
   801       return OPTIMAL;
   802     switch (glp_get_dual_stat(lp)) {
   803     case GLP_UNDEF:
   804       return UNDEFINED;
   805     case GLP_FEAS:
   806     case GLP_INFEAS:
   807       if (glp_get_prim_stat(lp) == GLP_NOFEAS) {
   808         return UNBOUNDED;
   809       } else {
   810         return UNDEFINED;
   811       }
   812     case GLP_NOFEAS:
   813       return INFEASIBLE;
   814     default:
   815       LEMON_ASSERT(false, "Wrong primal type");
   816       return  GlpkLp::ProblemType();
   817     }
   818   }
   819 
   820   void GlpkLp::presolver(bool b) {
   821     lpx_set_int_parm(lp, LPX_K_PRESOL, b ? 1 : 0);
   822   }
   823 
   824   void GlpkLp::messageLevel(MessageLevel m) {
   825     _message_level = m;
   826   }
   827 
   828   // GlpkMip members
   829 
   830   GlpkMip::GlpkMip()
   831     : LpBase(), GlpkBase(), MipSolver() {
   832     messageLevel(MESSAGE_NO_OUTPUT);
   833   }
   834 
   835   GlpkMip::GlpkMip(const GlpkMip& other)
   836     : LpBase(), GlpkBase(other), MipSolver() {
   837     messageLevel(MESSAGE_NO_OUTPUT);
   838   }
   839 
   840   void GlpkMip::_setColType(int i, GlpkMip::ColTypes col_type) {
   841     switch (col_type) {
   842     case INTEGER:
   843       glp_set_col_kind(lp, i, GLP_IV);
   844       break;
   845     case REAL:
   846       glp_set_col_kind(lp, i, GLP_CV);
   847       break;
   848     }
   849   }
   850 
   851   GlpkMip::ColTypes GlpkMip::_getColType(int i) const {
   852     switch (glp_get_col_kind(lp, i)) {
   853     case GLP_IV:
   854     case GLP_BV:
   855       return INTEGER;
   856     default:
   857       return REAL;
   858     }
   859 
   860   }
   861 
   862   GlpkMip::SolveExitStatus GlpkMip::_solve() {
   863     glp_smcp smcp;
   864     glp_init_smcp(&smcp);
   865 
   866     switch (_message_level) {
   867     case MESSAGE_NO_OUTPUT:
   868       smcp.msg_lev = GLP_MSG_OFF;
   869       break;
   870     case MESSAGE_ERROR_MESSAGE:
   871       smcp.msg_lev = GLP_MSG_ERR;
   872       break;
   873     case MESSAGE_NORMAL_OUTPUT:
   874       smcp.msg_lev = GLP_MSG_ON;
   875       break;
   876     case MESSAGE_FULL_OUTPUT:
   877       smcp.msg_lev = GLP_MSG_ALL;
   878       break;
   879     }
   880     smcp.meth = GLP_DUAL;
   881 
   882     if (glp_simplex(lp, &smcp) != 0) return UNSOLVED;
   883     if (glp_get_status(lp) != GLP_OPT) return SOLVED;
   884 
   885     glp_iocp iocp;
   886     glp_init_iocp(&iocp);
   887 
   888     switch (_message_level) {
   889     case MESSAGE_NO_OUTPUT:
   890       iocp.msg_lev = GLP_MSG_OFF;
   891       break;
   892     case MESSAGE_ERROR_MESSAGE:
   893       iocp.msg_lev = GLP_MSG_ERR;
   894       break;
   895     case MESSAGE_NORMAL_OUTPUT:
   896       iocp.msg_lev = GLP_MSG_ON;
   897       break;
   898     case MESSAGE_FULL_OUTPUT:
   899       iocp.msg_lev = GLP_MSG_ALL;
   900       break;
   901     }
   902 
   903     if (glp_intopt(lp, &iocp) != 0) return UNSOLVED;
   904     return SOLVED;
   905   }
   906 
   907 
   908   GlpkMip::ProblemType GlpkMip::_getType() const {
   909     switch (glp_get_status(lp)) {
   910     case GLP_OPT:
   911       switch (glp_mip_status(lp)) {
   912       case GLP_UNDEF:
   913         return UNDEFINED;
   914       case GLP_NOFEAS:
   915         return INFEASIBLE;
   916       case GLP_FEAS:
   917         return FEASIBLE;
   918       case GLP_OPT:
   919         return OPTIMAL;
   920       default:
   921         LEMON_ASSERT(false, "Wrong problem type.");
   922         return GlpkMip::ProblemType();
   923       }
   924     case GLP_NOFEAS:
   925       return INFEASIBLE;
   926     case GLP_INFEAS:
   927     case GLP_FEAS:
   928       if (glp_get_dual_stat(lp) == GLP_NOFEAS) {
   929         return UNBOUNDED;
   930       } else {
   931         return UNDEFINED;
   932       }
   933     default:
   934       LEMON_ASSERT(false, "Wrong problem type.");
   935       return GlpkMip::ProblemType();
   936     }
   937   }
   938 
   939   GlpkMip::Value GlpkMip::_getSol(int i) const {
   940     return glp_mip_col_val(lp, i);
   941   }
   942 
   943   GlpkMip::Value GlpkMip::_getSolValue() const {
   944     return glp_mip_obj_val(lp);
   945   }
   946 
   947   GlpkMip* GlpkMip::_newSolver() const { return new GlpkMip; }
   948   GlpkMip* GlpkMip::_cloneSolver() const {return new GlpkMip(*this); }
   949 
   950   const char* GlpkMip::_solverName() const { return "GlpkMip"; }
   951 
   952   void GlpkMip::messageLevel(MessageLevel m) {
   953     _message_level = m;
   954   }
   955 
   956 } //END OF NAMESPACE LEMON