equal
deleted
inserted
replaced
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 |
|