lemon/mip_cplex.cc
changeset 2262 b9a7f4115abe
parent 2226 0411ac8a2d87
child 2267 3575f17a6e7f
equal deleted inserted replaced
1:1e3199d8bbe9 2:921c38efd81d
    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_CPLEX_CC
       
    20 #define LEMON_MIP_CPLEX_CC
       
    21 
    18 
    22 ///\file
    19 ///\file
    23 ///\brief Implementation of the LEMON-CPLEX mip solver interface.
    20 ///\brief Implementation of the LEMON-CPLEX mip solver interface.
    24 
    21 
    25 #include <lemon/mip_cplex.h>
    22 #include <lemon/mip_cplex.h>
   132     Value objval;
   129     Value objval;
   133     status = CPXgetmipobjval(env, lp, &objval);
   130     status = CPXgetmipobjval(env, lp, &objval);
   134     return objval;
   131     return objval;
   135   }
   132   }
   136 } //END OF NAMESPACE LEMON
   133 } //END OF NAMESPACE LEMON
   137 
       
   138 #endif //END OF MIP_CPLEX_CC