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
19 #ifndef LEMON_SOPLEX_H
20 #define LEMON_SOPLEX_H
23 ///\brief Header of the LEMON-SOPLEX lp solver interface.
28 #include <lemon/lp_base.h>
30 // Forward declaration
39 /// \brief Interface for the SOPLEX solver
41 /// This class implements an interface for the SoPlex LP solver.
42 /// The SoPlex library is an object oriented lp solver library
43 /// developed at the Konrad-Zuse-Zentrum für Informationstechnik
44 /// Berlin (ZIB). You can find detailed information about it at the
45 /// <tt>http://soplex.zib.de</tt> address.
46 class SoplexLp : public LpSolver {
49 soplex::SoPlex* soplex;
51 std::vector<std::string> _col_names;
52 std::map<std::string, int> _col_names_ref;
54 std::vector<std::string> _row_names;
55 std::map<std::string, int> _row_names_ref;
59 // these values cannot be retrieved element by element
60 mutable std::vector<Value> _primal_values;
61 mutable std::vector<Value> _dual_values;
63 mutable std::vector<Value> _primal_ray;
64 mutable std::vector<Value> _dual_ray;
66 void _clear_temporals();
73 SoplexLp(const SoplexLp&);
79 virtual SoplexLp* _newSolver() const;
80 virtual SoplexLp* _cloneSolver() const;
82 virtual const char* _solverName() const;
84 virtual int _addCol();
85 virtual int _addRow();
87 virtual void _eraseCol(int i);
88 virtual void _eraseRow(int i);
90 virtual void _eraseColId(int i);
91 virtual void _eraseRowId(int i);
93 virtual void _getColName(int col, std::string& name) const;
94 virtual void _setColName(int col, const std::string& name);
95 virtual int _colByName(const std::string& name) const;
97 virtual void _getRowName(int row, std::string& name) const;
98 virtual void _setRowName(int row, const std::string& name);
99 virtual int _rowByName(const std::string& name) const;
101 virtual void _setRowCoeffs(int i, ExprIterator b, ExprIterator e);
102 virtual void _getRowCoeffs(int i, InsertIterator b) const;
104 virtual void _setColCoeffs(int i, ExprIterator b, ExprIterator e);
105 virtual void _getColCoeffs(int i, InsertIterator b) const;
107 virtual void _setCoeff(int row, int col, Value value);
108 virtual Value _getCoeff(int row, int col) const;
110 virtual void _setColLowerBound(int i, Value value);
111 virtual Value _getColLowerBound(int i) const;
112 virtual void _setColUpperBound(int i, Value value);
113 virtual Value _getColUpperBound(int i) const;
115 virtual void _setRowLowerBound(int i, Value value);
116 virtual Value _getRowLowerBound(int i) const;
117 virtual void _setRowUpperBound(int i, Value value);
118 virtual Value _getRowUpperBound(int i) const;
120 virtual void _setObjCoeffs(ExprIterator b, ExprIterator e);
121 virtual void _getObjCoeffs(InsertIterator b) const;
123 virtual void _setObjCoeff(int i, Value obj_coef);
124 virtual Value _getObjCoeff(int i) const;
126 virtual void _setSense(Sense sense);
127 virtual Sense _getSense() const;
129 virtual SolveExitStatus _solve();
130 virtual Value _getPrimal(int i) const;
131 virtual Value _getDual(int i) const;
133 virtual Value _getPrimalValue() const;
135 virtual Value _getPrimalRay(int i) const;
136 virtual Value _getDualRay(int i) const;
138 virtual VarStatus _getColStatus(int i) const;
139 virtual VarStatus _getRowStatus(int i) const;
141 virtual ProblemType _getPrimalType() const;
142 virtual ProblemType _getDualType() const;
144 virtual void _clear();
148 } //END OF NAMESPACE LEMON
150 #endif //LEMON_SOPLEX_H