1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2008
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-GLPK lp solver interface.
26 #include <lemon/lp_base.h>
30 namespace _solver_bits {
35 VoidPtr() : _ptr(0) {}
38 VoidPtr(T* ptr) : _ptr(reinterpret_cast<void*>(ptr)) {}
41 VoidPtr& operator=(T* ptr) {
42 _ptr = reinterpret_cast<void*>(ptr);
47 operator T*() const { return reinterpret_cast<T*>(_ptr); }
51 /// \brief Base interface for the GLPK LP and MIP solver
53 /// This class implements the common interface of the GLPK LP and MIP solver.
55 class GlpkBase : virtual public LpBase {
58 _solver_bits::VoidPtr lp;
61 GlpkBase(const GlpkBase&);
66 virtual int _addCol();
67 virtual int _addRow();
69 virtual void _eraseCol(int i);
70 virtual void _eraseRow(int i);
72 virtual void _eraseColId(int i);
73 virtual void _eraseRowId(int i);
75 virtual void _getColName(int col, std::string& name) const;
76 virtual void _setColName(int col, const std::string& name);
77 virtual int _colByName(const std::string& name) const;
79 virtual void _getRowName(int row, std::string& name) const;
80 virtual void _setRowName(int row, const std::string& name);
81 virtual int _rowByName(const std::string& name) const;
83 virtual void _setRowCoeffs(int i, ExprIterator b, ExprIterator e);
84 virtual void _getRowCoeffs(int i, InsertIterator b) const;
86 virtual void _setColCoeffs(int i, ExprIterator b, ExprIterator e);
87 virtual void _getColCoeffs(int i, InsertIterator b) const;
89 virtual void _setCoeff(int row, int col, Value value);
90 virtual Value _getCoeff(int row, int col) const;
92 virtual void _setColLowerBound(int i, Value value);
93 virtual Value _getColLowerBound(int i) const;
95 virtual void _setColUpperBound(int i, Value value);
96 virtual Value _getColUpperBound(int i) const;
98 virtual void _setRowLowerBound(int i, Value value);
99 virtual Value _getRowLowerBound(int i) const;
101 virtual void _setRowUpperBound(int i, Value value);
102 virtual Value _getRowUpperBound(int i) const;
104 virtual void _setObjCoeffs(ExprIterator b, ExprIterator e);
105 virtual void _getObjCoeffs(InsertIterator b) const;
107 virtual void _setObjCoeff(int i, Value obj_coef);
108 virtual Value _getObjCoeff(int i) const;
110 virtual void _setSense(Sense);
111 virtual Sense _getSense() const;
113 virtual void _clear();
115 virtual void _messageLevel(MessageLevel level);
119 static void freeEnv();
121 struct FreeEnvHelper {
127 static FreeEnvHelper freeEnvHelper;
135 ///Pointer to the underlying GLPK data structure.
136 _solver_bits::VoidPtr lpx() {return lp;}
137 ///Const pointer to the underlying GLPK data structure.
138 _solver_bits::VoidPtr lpx() const {return lp;}
140 ///Returns the constraint identifier understood by GLPK.
141 int lpxRow(Row r) const { return rows(id(r)); }
143 ///Returns the variable identifier understood by GLPK.
144 int lpxCol(Col c) const { return cols(id(c)); }
148 /// \brief Interface for the GLPK LP solver
150 /// This class implements an interface for the GLPK LP solver.
152 class GlpkLp : public LpSolver, public GlpkBase {
158 GlpkLp(const GlpkLp&);
161 virtual GlpkLp* cloneSolver() const;
163 virtual GlpkLp* newSolver() const;
167 mutable std::vector<double> _primal_ray;
168 mutable std::vector<double> _dual_ray;
170 void _clear_temporals();
174 virtual const char* _solverName() const;
176 virtual SolveExitStatus _solve();
177 virtual Value _getPrimal(int i) const;
178 virtual Value _getDual(int i) const;
180 virtual Value _getPrimalValue() const;
182 virtual VarStatus _getColStatus(int i) const;
183 virtual VarStatus _getRowStatus(int i) const;
185 virtual Value _getPrimalRay(int i) const;
186 virtual Value _getDualRay(int i) const;
188 virtual ProblemType _getPrimalType() const;
189 virtual ProblemType _getDualType() const;
193 ///Solve with primal simplex
194 SolveExitStatus solvePrimal();
196 ///Solve with dual simplex
197 SolveExitStatus solveDual();
205 ///Turns on or off the presolver
207 ///Turns on (\c b is \c true) or off (\c b is \c false) the presolver
209 ///The presolver is off by default.
210 void presolver(bool presolve);
214 /// \brief Interface for the GLPK MIP solver
216 /// This class implements an interface for the GLPK MIP solver.
218 class GlpkMip : public MipSolver, public GlpkBase {
224 GlpkMip(const GlpkMip&);
226 virtual GlpkMip* cloneSolver() const;
227 virtual GlpkMip* newSolver() const;
231 virtual const char* _solverName() const;
233 virtual ColTypes _getColType(int col) const;
234 virtual void _setColType(int col, ColTypes col_type);
236 virtual SolveExitStatus _solve();
237 virtual ProblemType _getType() const;
238 virtual Value _getSol(int i) const;
239 virtual Value _getSolValue() const;
244 } //END OF NAMESPACE LEMON
246 #endif //LEMON_GLPK_H