1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2009
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
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.
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
23 ///\brief Header of the LEMON-CPLEX lp solver interface.
25 #include <lemon/lp_base.h>
32 /// \brief Reference counted wrapper around cpxenv pointer
34 /// The cplex uses environment object which is responsible for
35 /// checking the proper license usage. This class provides a simple
36 /// interface for share the environment object between different
39 friend class CplexBase;
46 /// \brief This exception is thrown when the license check is not
48 class LicenseError : public Exception {
49 friend class CplexEnv;
52 LicenseError(int status);
57 /// The short error message
58 virtual const char* what() const throw() {
65 /// Shallow copy constructor
66 CplexEnv(const CplexEnv&);
67 /// Shallow assignement
68 CplexEnv& operator=(const CplexEnv&);
74 cpxenv* cplexEnv() { return _env; }
75 const cpxenv* cplexEnv() const { return _env; }
78 /// \brief Base interface for the CPLEX LP and MIP solver
80 /// This class implements the common interface of the CPLEX LP and
83 class CplexBase : virtual public LpBase {
90 CplexBase(const CplexEnv&);
91 CplexBase(const CplexBase &);
94 virtual int _addCol();
95 virtual int _addRow();
96 virtual int _addRow(Value l, ExprIterator b, ExprIterator e, Value u);
98 virtual void _eraseCol(int i);
99 virtual void _eraseRow(int i);
101 virtual void _eraseColId(int i);
102 virtual void _eraseRowId(int i);
104 virtual void _getColName(int col, std::string& name) const;
105 virtual void _setColName(int col, const std::string& name);
106 virtual int _colByName(const std::string& name) const;
108 virtual void _getRowName(int row, std::string& name) const;
109 virtual void _setRowName(int row, const std::string& name);
110 virtual int _rowByName(const std::string& name) const;
112 virtual void _setRowCoeffs(int i, ExprIterator b, ExprIterator e);
113 virtual void _getRowCoeffs(int i, InsertIterator b) const;
115 virtual void _setColCoeffs(int i, ExprIterator b, ExprIterator e);
116 virtual void _getColCoeffs(int i, InsertIterator b) const;
118 virtual void _setCoeff(int row, int col, Value value);
119 virtual Value _getCoeff(int row, int col) const;
121 virtual void _setColLowerBound(int i, Value value);
122 virtual Value _getColLowerBound(int i) const;
124 virtual void _setColUpperBound(int i, Value value);
125 virtual Value _getColUpperBound(int i) const;
128 void _set_row_bounds(int i, Value lb, Value ub);
131 virtual void _setRowLowerBound(int i, Value value);
132 virtual Value _getRowLowerBound(int i) const;
134 virtual void _setRowUpperBound(int i, Value value);
135 virtual Value _getRowUpperBound(int i) const;
137 virtual void _setObjCoeffs(ExprIterator b, ExprIterator e);
138 virtual void _getObjCoeffs(InsertIterator b) const;
140 virtual void _setObjCoeff(int i, Value obj_coef);
141 virtual Value _getObjCoeff(int i) const;
143 virtual void _setSense(Sense sense);
144 virtual Sense _getSense() const;
146 virtual void _clear();
148 virtual void _messageLevel(MessageLevel level);
149 void _applyMessageLevel();
151 bool _message_enabled;
155 /// Returns the used \c CplexEnv instance
156 const CplexEnv& env() const { return _env; }
158 /// \brief Returns the const cpxenv pointer
160 /// \note The cpxenv might be destructed with the solver.
161 const cpxenv* cplexEnv() const { return _env.cplexEnv(); }
163 /// \brief Returns the const cpxenv pointer
165 /// \note The cpxenv might be destructed with the solver.
166 cpxenv* cplexEnv() { return _env.cplexEnv(); }
168 /// Returns the cplex problem object
169 cpxlp* cplexLp() { return _prob; }
170 /// Returns the cplex problem object
171 const cpxlp* cplexLp() const { return _prob; }
175 /// \brief Interface for the CPLEX LP solver
177 /// This class implements an interface for the CPLEX LP solver.
179 class CplexLp : public LpSolver, public CplexBase {
184 CplexLp(const CplexEnv&);
186 CplexLp(const CplexLp&);
191 virtual CplexLp* cloneSolver() const;
193 virtual CplexLp* newSolver() const;
197 // these values cannot retrieved element by element
198 mutable std::vector<int> _col_status;
199 mutable std::vector<int> _row_status;
201 mutable std::vector<Value> _primal_ray;
202 mutable std::vector<Value> _dual_ray;
204 void _clear_temporals();
206 SolveExitStatus convertStatus(int status);
210 virtual const char* _solverName() const;
212 virtual SolveExitStatus _solve();
213 virtual Value _getPrimal(int i) const;
214 virtual Value _getDual(int i) const;
215 virtual Value _getPrimalValue() const;
217 virtual VarStatus _getColStatus(int i) const;
218 virtual VarStatus _getRowStatus(int i) const;
220 virtual Value _getPrimalRay(int i) const;
221 virtual Value _getDualRay(int i) const;
223 virtual ProblemType _getPrimalType() const;
224 virtual ProblemType _getDualType() const;
228 /// Solve with primal simplex method
229 SolveExitStatus solvePrimal();
231 /// Solve with dual simplex method
232 SolveExitStatus solveDual();
234 /// Solve with barrier method
235 SolveExitStatus solveBarrier();
239 /// \brief Interface for the CPLEX MIP solver
241 /// This class implements an interface for the CPLEX MIP solver.
243 class CplexMip : public MipSolver, public CplexBase {
248 CplexMip(const CplexEnv&);
250 CplexMip(const CplexMip&);
255 virtual CplexMip* cloneSolver() const;
257 virtual CplexMip* newSolver() const;
262 virtual const char* _solverName() const;
264 virtual ColTypes _getColType(int col) const;
265 virtual void _setColType(int col, ColTypes col_type);
267 virtual SolveExitStatus _solve();
268 virtual ProblemType _getType() const;
269 virtual Value _getSol(int i) const;
270 virtual Value _getSolValue() const;
274 } //END OF NAMESPACE LEMON
276 #endif //LEMON_CPLEX_H