lemon/mip_glpk.cc
changeset 2261 c52b572c294f
parent 2218 50f1a780a5ff
child 2267 3575f17a6e7f
equal deleted inserted replaced
5:4157332d14a3 6:b6e304bdb02a
    13  * This software is provided "AS IS" with no warranty of any kind,
    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
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    15  * purpose.
    16  *
    16  *
    17  */
    17  */
    18 
       
    19 #ifndef LEMON_MIP_GLPK_CC
       
    20 #define LEMON_MIP_GLPK_CC
       
    21 
    18 
    22 ///\file
    19 ///\file
    23 ///\brief Implementation of the LEMON-GLPK mip solver interface.
    20 ///\brief Implementation of the LEMON-GLPK mip solver interface.
    24 
    21 
    25 #include <lemon/mip_glpk.h>
    22 #include <lemon/mip_glpk.h>
   109   
   106   
   110   MipGlpk::Value MipGlpk::_getPrimalValue(){
   107   MipGlpk::Value MipGlpk::_getPrimalValue(){
   111     return lpx_mip_obj_val(lp);
   108     return lpx_mip_obj_val(lp);
   112   }
   109   }
   113 } //END OF NAMESPACE LEMON
   110 } //END OF NAMESPACE LEMON
   114 
       
   115 #endif //END OF MIP_GLPK_CC