3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
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_LP_BASE_H
20 #define LEMON_LP_BASE_H
30 #include<lemon/error.h>
31 #include<lemon/bits/invalid.h>
32 #include<lemon/bits/utility.h>
33 #include<lemon/bits/lp_id.h>
36 ///\brief The interface of the LP solver interface.
40 ///Common base class for LP solvers
42 ///\todo Much more docs
53 ///Possible outcomes of an LP solving procedure
54 enum SolveExitStatus {
55 ///This means that the problem has been successfully solved: either
56 ///an optimal solution has been found or infeasibility/unboundedness
59 ///Any other case (including the case when some user specified
60 ///limit has been exceeded)
66 ///Feasible solution hasn't been found (but may exist).
68 ///\todo NOTFOUND might be a better name.
71 ///The problem has no feasible solution
73 ///Feasible solution found
75 ///Optimal solution exists and found
77 ///The cost function is unbounded
79 ///\todo Give a feasible solution and an infinite ray (and the
80 ///corresponding bases)
84 ///\e The type of the investigated LP problem
86 ///Primal-dual feasible
87 PRIMAL_DUAL_FEASIBLE = 0,
88 ///Primal feasible dual infeasible
89 PRIMAL_FEASIBLE_DUAL_INFEASIBLE = 1,
90 ///Primal infeasible dual feasible
91 PRIMAL_INFEASIBLE_DUAL_FEASIBLE = 2,
92 ///Primal-dual infeasible
93 PRIMAL_DUAL_INFEASIBLE = 3,
94 ///Could not determine so far
98 ///The floating point type used by the solver
100 ///The infinity constant
101 static const Value INF;
102 ///The not a number constant
103 static const Value NaN;
105 static inline bool isNaN(const Value& v) { return v!=v; }
111 ///Refer to a column of the LP.
113 ///This type is used to refer to a column of the LP.
115 ///Its value remains valid and correct even after the addition or erase of
118 ///\todo Document what can one do with a Col (INVALID, comparing,
119 ///it is similar to Node/Edge)
123 friend class LpSolverBase;
124 friend class MipSolverBase;
125 explicit Col(int _id) : id(_id) {}
127 typedef Value ExprValue;
128 typedef True LpSolverCol;
130 Col(const Invalid&) : id(-1) {}
131 bool operator< (Col c) const {return id< c.id;}
132 bool operator> (Col c) const {return id> c.id;}
133 bool operator==(Col c) const {return id==c.id;}
134 bool operator!=(Col c) const {return id!=c.id;}
137 class ColIt : public Col {
138 const LpSolverBase *_lp;
141 ColIt(const LpSolverBase &lp) : _lp(&lp)
143 _lp->cols.firstFix(id);
145 ColIt(const Invalid&) : Col(INVALID) {}
148 _lp->cols.nextFix(id);
153 static int id(const Col& col) { return col.id; }
156 ///Refer to a row of the LP.
158 ///This type is used to refer to a row of the LP.
160 ///Its value remains valid and correct even after the addition or erase of
163 ///\todo Document what can one do with a Row (INVALID, comparing,
164 ///it is similar to Node/Edge)
168 friend class LpSolverBase;
169 explicit Row(int _id) : id(_id) {}
171 typedef Value ExprValue;
172 typedef True LpSolverRow;
174 Row(const Invalid&) : id(-1) {}
176 bool operator< (Row c) const {return id< c.id;}
177 bool operator> (Row c) const {return id> c.id;}
178 bool operator==(Row c) const {return id==c.id;}
179 bool operator!=(Row c) const {return id!=c.id;}
182 class RowIt : public Row {
183 const LpSolverBase *_lp;
186 RowIt(const LpSolverBase &lp) : _lp(&lp)
188 _lp->rows.firstFix(id);
190 RowIt(const Invalid&) : Row(INVALID) {}
193 _lp->rows.nextFix(id);
198 static int id(const Row& row) { return row.id; }
202 int _lpId(const Col& col) const {
203 return cols.floatingId(id(col));
206 int _lpId(const Row& row) const {
207 return rows.floatingId(id(row));
210 Col _item(int id, Col) const {
211 return Col(cols.fixId(id));
214 Row _item(int id, Row) const {
215 return Row(rows.fixId(id));
221 ///Linear expression of variables and a constant component
223 ///This data structure stores a linear expression of the variables
224 ///(\ref Col "Col"s) and also has a constant component.
226 ///There are several ways to access and modify the contents of this
228 ///- Its it fully compatible with \c std::map<Col,double>, so for expamle
229 ///if \c e is an Expr and \c v and \c w are of type \ref Col, then you can
230 ///read and modify the coefficients like
237 ///or you can also iterate through its elements.
240 ///for(LpSolverBase::Expr::iterator i=e.begin();i!=e.end();++i)
243 ///(This code computes the sum of all coefficients).
244 ///- Numbers (<tt>double</tt>'s)
245 ///and variables (\ref Col "Col"s) directly convert to an
246 ///\ref Expr and the usual linear operations are defined, so
249 ///2*v-3.12*(v-w/2)+2
250 ///v*2.1+(3*v+(v*12+w+6)*3)/2
252 ///are valid \ref Expr "Expr"essions.
253 ///The usual assignment operations are also defined.
256 ///e+=2*v-3.12*(v-w/2)+2;
260 ///- The constant member can be set and read by \ref constComp()
263 ///double c=e.constComp();
266 ///\note \ref clear() not only sets all coefficients to 0 but also
267 ///clears the constant components.
271 class Expr : public std::map<Col,Value>
274 typedef LpSolverBase::Col Key;
275 typedef LpSolverBase::Value Value;
278 typedef std::map<Col,Value> Base;
282 typedef True IsLinExpression;
284 Expr() : Base(), const_comp(0) { }
286 Expr(const Key &v) : const_comp(0) {
287 Base::insert(std::make_pair(v, 1));
290 Expr(const Value &v) : const_comp(v) {}
292 void set(const Key &v,const Value &c) {
293 Base::insert(std::make_pair(v, c));
296 Value &constComp() { return const_comp; }
298 const Value &constComp() const { return const_comp; }
300 ///Removes the components with zero coefficient.
302 for (Base::iterator i=Base::begin(); i!=Base::end();) {
305 if ((*i).second==0) Base::erase(i);
310 void simplify() const {
311 const_cast<Expr*>(this)->simplify();
314 ///Removes the coefficients closer to zero than \c tolerance.
315 void simplify(double &tolerance) {
316 for (Base::iterator i=Base::begin(); i!=Base::end();) {
319 if (std::fabs((*i).second)<tolerance) Base::erase(i);
324 ///Sets all coefficients and the constant component to 0.
331 Expr &operator+=(const Expr &e) {
332 for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
333 (*this)[j->first]+=j->second;
334 const_comp+=e.const_comp;
338 Expr &operator-=(const Expr &e) {
339 for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
340 (*this)[j->first]-=j->second;
341 const_comp-=e.const_comp;
345 Expr &operator*=(const Value &c) {
346 for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
352 Expr &operator/=(const Value &c) {
353 for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
360 void prettyPrint(std::ostream &os) {
361 //std::fmtflags os.flags();
362 //os.setf(std::ios::showpos);
363 Base::iterator j=Base::begin();
365 os<<j->second<<"*x["<<id(j->first)<<"]";
367 for (; j!=Base::end(); ++j){
370 os<<j->second<<"*x["<<id(j->first)<<"]";
372 //Nem valami korrekt, de nem talaltam meg, hogy kell
373 //os.unsetf(std::ios::showpos);
382 ///This data stucture represents a linear constraint in the LP.
383 ///Basically it is a linear expression with a lower or an upper bound
384 ///(or both). These parts of the constraint can be obtained by the member
385 ///functions \ref expr(), \ref lowerBound() and \ref upperBound(),
387 ///There are two ways to construct a constraint.
388 ///- You can set the linear expression and the bounds directly
389 /// by the functions above.
390 ///- The operators <tt>\<=</tt>, <tt>==</tt> and <tt>\>=</tt>
391 /// are defined between expressions, or even between constraints whenever
392 /// it makes sense. Therefore if \c e and \c f are linear expressions and
393 /// \c s and \c t are numbers, then the followings are valid expressions
394 /// and thus they can be used directly e.g. in \ref addRow() whenever
403 ///\warning The validity of a constraint is checked only at run time, so
404 ///e.g. \ref addRow(<tt>x[1]\<=x[2]<=5</tt>) will compile, but will throw a
405 ///\ref LogicError exception.
409 typedef LpSolverBase::Expr Expr;
410 typedef Expr::Key Key;
411 typedef Expr::Value Value;
418 Constr() : _expr(), _lb(NaN), _ub(NaN) {}
420 Constr(Value lb,const Expr &e,Value ub) :
421 _expr(e), _lb(lb), _ub(ub) {}
423 Constr(const Expr &e,Value ub) :
424 _expr(e), _lb(NaN), _ub(ub) {}
426 Constr(Value lb,const Expr &e) :
427 _expr(e), _lb(lb), _ub(NaN) {}
429 Constr(const Expr &e) :
430 _expr(e), _lb(NaN), _ub(NaN) {}
438 ///Reference to the linear expression
439 Expr &expr() { return _expr; }
440 ///Cont reference to the linear expression
441 const Expr &expr() const { return _expr; }
442 ///Reference to the lower bound.
445 ///- \ref INF "INF": the constraint is lower unbounded.
446 ///- \ref NaN "NaN": lower bound has not been set.
447 ///- finite number: the lower bound
448 Value &lowerBound() { return _lb; }
449 ///The const version of \ref lowerBound()
450 const Value &lowerBound() const { return _lb; }
451 ///Reference to the upper bound.
454 ///- \ref INF "INF": the constraint is upper unbounded.
455 ///- \ref NaN "NaN": upper bound has not been set.
456 ///- finite number: the upper bound
457 Value &upperBound() { return _ub; }
458 ///The const version of \ref upperBound()
459 const Value &upperBound() const { return _ub; }
460 ///Is the constraint lower bounded?
461 bool lowerBounded() const {
465 ///Is the constraint upper bounded?
466 bool upperBounded() const {
471 void prettyPrint(std::ostream &os) {
472 if (_lb==-LpSolverBase::INF||isNaN(_lb))
476 _expr.prettyPrint(os);
477 if (_ub==LpSolverBase::INF)
486 ///Linear expression of rows
488 ///This data structure represents a column of the matrix,
489 ///thas is it strores a linear expression of the dual variables
490 ///(\ref Row "Row"s).
492 ///There are several ways to access and modify the contents of this
494 ///- Its it fully compatible with \c std::map<Row,double>, so for expamle
495 ///if \c e is an DualExpr and \c v
496 ///and \c w are of type \ref Row, then you can
497 ///read and modify the coefficients like
504 ///or you can also iterate through its elements.
507 ///for(LpSolverBase::DualExpr::iterator i=e.begin();i!=e.end();++i)
510 ///(This code computes the sum of all coefficients).
511 ///- Numbers (<tt>double</tt>'s)
512 ///and variables (\ref Row "Row"s) directly convert to an
513 ///\ref DualExpr and the usual linear operations are defined, so
517 ///v*2.1+(3*v+(v*12+w)*3)/2
519 ///are valid \ref DualExpr "DualExpr"essions.
520 ///The usual assignment operations are also defined.
523 ///e+=2*v-3.12*(v-w/2);
530 class DualExpr : public std::map<Row,Value>
533 typedef LpSolverBase::Row Key;
534 typedef LpSolverBase::Value Value;
537 typedef std::map<Row,Value> Base;
540 typedef True IsLinExpression;
542 DualExpr() : Base() { }
544 DualExpr(const Key &v) {
545 Base::insert(std::make_pair(v, 1));
548 void set(const Key &v,const Value &c) {
549 Base::insert(std::make_pair(v, c));
552 ///Removes the components with zero coefficient.
554 for (Base::iterator i=Base::begin(); i!=Base::end();) {
557 if ((*i).second==0) Base::erase(i);
562 void simplify() const {
563 const_cast<DualExpr*>(this)->simplify();
566 ///Removes the coefficients closer to zero than \c tolerance.
567 void simplify(double &tolerance) {
568 for (Base::iterator i=Base::begin(); i!=Base::end();) {
571 if (std::fabs((*i).second)<tolerance) Base::erase(i);
576 ///Sets all coefficients to 0.
582 DualExpr &operator+=(const DualExpr &e) {
583 for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
584 (*this)[j->first]+=j->second;
588 DualExpr &operator-=(const DualExpr &e) {
589 for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
590 (*this)[j->first]-=j->second;
594 DualExpr &operator*=(const Value &c) {
595 for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
600 DualExpr &operator/=(const Value &c) {
601 for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
610 template <typename _Expr>
611 class MappedOutputIterator {
614 typedef std::insert_iterator<_Expr> Base;
616 typedef std::output_iterator_tag iterator_category;
617 typedef void difference_type;
618 typedef void value_type;
619 typedef void reference;
620 typedef void pointer;
622 MappedOutputIterator(const Base& _base, const LpSolverBase& _lp)
623 : base(_base), lp(_lp) {}
625 MappedOutputIterator& operator*() {
629 MappedOutputIterator& operator=(const std::pair<int, Value>& value) {
630 *base = std::make_pair(lp._item(value.first, typename _Expr::Key()),
635 MappedOutputIterator& operator++() {
640 MappedOutputIterator operator++(int) {
641 MappedOutputIterator tmp(*this);
646 bool operator==(const MappedOutputIterator& it) const {
647 return base == it.base;
650 bool operator!=(const MappedOutputIterator& it) const {
651 return base != it.base;
656 const LpSolverBase& lp;
659 template <typename Expr>
660 class MappedInputIterator {
663 typedef typename Expr::const_iterator Base;
665 typedef typename Base::iterator_category iterator_category;
666 typedef typename Base::difference_type difference_type;
667 typedef const std::pair<int, Value> value_type;
668 typedef value_type reference;
671 pointer(value_type& _value) : value(_value) {}
672 value_type* operator->() { return &value; }
677 MappedInputIterator(const Base& _base, const LpSolverBase& _lp)
678 : base(_base), lp(_lp) {}
680 reference operator*() {
681 return std::make_pair(lp._lpId(base->first), base->second);
684 pointer operator->() {
685 return pointer(operator*());
688 MappedInputIterator& operator++() {
693 MappedInputIterator operator++(int) {
694 MappedInputIterator tmp(*this);
699 bool operator==(const MappedInputIterator& it) const {
700 return base == it.base;
703 bool operator!=(const MappedInputIterator& it) const {
704 return base != it.base;
709 const LpSolverBase& lp;
714 /// STL compatible iterator for lp col
715 typedef MappedInputIterator<Expr> ConstRowIterator;
716 /// STL compatible iterator for lp row
717 typedef MappedInputIterator<DualExpr> ConstColIterator;
719 /// STL compatible iterator for lp col
720 typedef MappedOutputIterator<Expr> RowIterator;
721 /// STL compatible iterator for lp row
722 typedef MappedOutputIterator<DualExpr> ColIterator;
724 //Abstract virtual functions
725 virtual LpSolverBase &_newLp() = 0;
726 virtual LpSolverBase &_copyLp(){
727 ///\todo This should be implemented here, too, when we have
728 ///problem retrieving routines. It can be overriden.
731 LpSolverBase & newlp(_newLp());
733 //return *(LpSolverBase*)0;
736 virtual int _addCol() = 0;
737 virtual int _addRow() = 0;
739 virtual void _eraseCol(int col) = 0;
740 virtual void _eraseRow(int row) = 0;
742 virtual void _getColName(int col, std::string & name) const = 0;
743 virtual void _setColName(int col, const std::string & name) = 0;
744 virtual int _colByName(const std::string& name) const = 0;
746 virtual void _setRowCoeffs(int i, ConstRowIterator b,
747 ConstRowIterator e) = 0;
748 virtual void _getRowCoeffs(int i, RowIterator b) const = 0;
749 virtual void _setColCoeffs(int i, ConstColIterator b,
750 ConstColIterator e) = 0;
751 virtual void _getColCoeffs(int i, ColIterator b) const = 0;
752 virtual void _setCoeff(int row, int col, Value value) = 0;
753 virtual Value _getCoeff(int row, int col) const = 0;
754 virtual void _setColLowerBound(int i, Value value) = 0;
755 virtual Value _getColLowerBound(int i) const = 0;
756 virtual void _setColUpperBound(int i, Value value) = 0;
757 virtual Value _getColUpperBound(int i) const = 0;
758 virtual void _setRowBounds(int i, Value lower, Value upper) = 0;
759 virtual void _getRowBounds(int i, Value &lower, Value &upper) const = 0;
761 virtual void _setObjCoeff(int i, Value obj_coef) = 0;
762 virtual Value _getObjCoeff(int i) const = 0;
763 virtual void _clearObj()=0;
765 virtual SolveExitStatus _solve() = 0;
766 virtual Value _getPrimal(int i) const = 0;
767 virtual Value _getDual(int i) const = 0;
768 virtual Value _getPrimalValue() const = 0;
769 virtual bool _isBasicCol(int i) const = 0;
770 virtual SolutionStatus _getPrimalStatus() const = 0;
771 virtual SolutionStatus _getDualStatus() const = 0;
772 virtual ProblemTypes _getProblemType() const = 0;
774 virtual void _setMax() = 0;
775 virtual void _setMin() = 0;
778 virtual bool _isMax() const = 0;
780 //Own protected stuff
782 //Constant component of the objective function
783 Value obj_const_comp;
788 LpSolverBase() : obj_const_comp(0) {}
791 virtual ~LpSolverBase() {}
793 ///Creates a new LP problem
794 LpSolverBase &newLp() {return _newLp();}
795 ///Makes a copy of the LP problem
796 LpSolverBase ©Lp() {return _copyLp();}
798 ///\name Build up and modify the LP
802 ///Add a new empty column (i.e a new variable) to the LP
803 Col addCol() { Col c; _addCol(); c.id = cols.addId(); return c;}
805 ///\brief Adds several new columns
806 ///(i.e a variables) at once
808 ///This magic function takes a container as its argument
809 ///and fills its elements
810 ///with new columns (i.e. variables)
812 ///- a standard STL compatible iterable container with
813 ///\ref Col as its \c values_type
816 ///std::vector<LpSolverBase::Col>
817 ///std::list<LpSolverBase::Col>
819 ///- a standard STL compatible iterable container with
820 ///\ref Col as its \c mapped_type
823 ///std::map<AnyType,LpSolverBase::Col>
825 ///- an iterable lemon \ref concepts::WriteMap "write map" like
827 ///ListGraph::NodeMap<LpSolverBase::Col>
828 ///ListGraph::EdgeMap<LpSolverBase::Col>
830 ///\return The number of the created column.
833 int addColSet(T &t) { return 0;}
836 typename enable_if<typename T::value_type::LpSolverCol,int>::type
837 addColSet(T &t,dummy<0> = 0) {
839 for(typename T::iterator i=t.begin();i!=t.end();++i) {*i=addCol();s++;}
843 typename enable_if<typename T::value_type::second_type::LpSolverCol,
845 addColSet(T &t,dummy<1> = 1) {
847 for(typename T::iterator i=t.begin();i!=t.end();++i) {
854 typename enable_if<typename T::MapIt::Value::LpSolverCol,
856 addColSet(T &t,dummy<2> = 2) {
858 for(typename T::MapIt i(t); i!=INVALID; ++i)
867 ///Set a column (i.e a dual constraint) of the LP
869 ///\param c is the column to be modified
870 ///\param e is a dual linear expression (see \ref DualExpr)
872 void col(Col c,const DualExpr &e) {
874 _setColCoeffs(_lpId(c), ConstColIterator(e.begin(), *this),
875 ConstColIterator(e.end(), *this));
878 ///Get a column (i.e a dual constraint) of the LP
880 ///\param r is the column to get
881 ///\return the dual expression associated to the column
882 DualExpr col(Col c) const {
884 _getColCoeffs(_lpId(c), ColIterator(std::inserter(e, e.end()), *this));
888 ///Add a new column to the LP
890 ///\param e is a dual linear expression (see \ref DualExpr)
891 ///\param obj is the corresponding component of the objective
892 ///function. It is 0 by default.
893 ///\return The created column.
894 Col addCol(const DualExpr &e, Value obj=0) {
901 ///Add a new empty row (i.e a new constraint) to the LP
903 ///This function adds a new empty row (i.e a new constraint) to the LP.
904 ///\return The created row
905 Row addRow() { Row r; _addRow(); r.id = rows.addId(); return r;}
907 ///\brief Add several new rows
908 ///(i.e a constraints) at once
910 ///This magic function takes a container as its argument
911 ///and fills its elements
912 ///with new row (i.e. variables)
914 ///- a standard STL compatible iterable container with
915 ///\ref Row as its \c values_type
918 ///std::vector<LpSolverBase::Row>
919 ///std::list<LpSolverBase::Row>
921 ///- a standard STL compatible iterable container with
922 ///\ref Row as its \c mapped_type
925 ///std::map<AnyType,LpSolverBase::Row>
927 ///- an iterable lemon \ref concepts::WriteMap "write map" like
929 ///ListGraph::NodeMap<LpSolverBase::Row>
930 ///ListGraph::EdgeMap<LpSolverBase::Row>
932 ///\return The number of rows created.
935 int addRowSet(T &t) { return 0;}
938 typename enable_if<typename T::value_type::LpSolverRow,int>::type
939 addRowSet(T &t,dummy<0> = 0) {
941 for(typename T::iterator i=t.begin();i!=t.end();++i) {*i=addRow();s++;}
945 typename enable_if<typename T::value_type::second_type::LpSolverRow,
947 addRowSet(T &t,dummy<1> = 1) {
949 for(typename T::iterator i=t.begin();i!=t.end();++i) {
956 typename enable_if<typename T::MapIt::Value::LpSolverRow,
958 addRowSet(T &t,dummy<2> = 2) {
960 for(typename T::MapIt i(t); i!=INVALID; ++i)
969 ///Set a row (i.e a constraint) of the LP
971 ///\param r is the row to be modified
972 ///\param l is lower bound (-\ref INF means no bound)
973 ///\param e is a linear expression (see \ref Expr)
974 ///\param u is the upper bound (\ref INF means no bound)
975 ///\bug This is a temporary function. The interface will change to
977 ///\todo Option to control whether a constraint with a single variable is
979 void row(Row r, Value l, const Expr &e, Value u) {
981 _setRowCoeffs(_lpId(r), ConstRowIterator(e.begin(), *this),
982 ConstRowIterator(e.end(), *this));
983 _setRowBounds(_lpId(r),l-e.constComp(),u-e.constComp());
986 ///Set a row (i.e a constraint) of the LP
988 ///\param r is the row to be modified
989 ///\param c is a linear expression (see \ref Constr)
990 void row(Row r, const Constr &c) {
991 row(r, c.lowerBounded()?c.lowerBound():-INF,
992 c.expr(), c.upperBounded()?c.upperBound():INF);
996 ///Get a row (i.e a constraint) of the LP
998 ///\param r is the row to get
999 ///\return the expression associated to the row
1000 Expr row(Row r) const {
1002 _getRowCoeffs(_lpId(r), RowIterator(std::inserter(e, e.end()), *this));
1006 ///Add a new row (i.e a new constraint) to the LP
1008 ///\param l is the lower bound (-\ref INF means no bound)
1009 ///\param e is a linear expression (see \ref Expr)
1010 ///\param u is the upper bound (\ref INF means no bound)
1011 ///\return The created row.
1012 ///\bug This is a temporary function. The interface will change to
1014 Row addRow(Value l,const Expr &e, Value u) {
1020 ///Add a new row (i.e a new constraint) to the LP
1022 ///\param c is a linear expression (see \ref Constr)
1023 ///\return The created row.
1024 Row addRow(const Constr &c) {
1029 ///Erase a coloumn (i.e a variable) from the LP
1031 ///\param c is the coloumn to be deleted
1032 ///\todo Please check this
1033 void eraseCol(Col c) {
1034 _eraseCol(_lpId(c));
1037 ///Erase a row (i.e a constraint) from the LP
1039 ///\param r is the row to be deleted
1040 ///\todo Please check this
1041 void eraseRow(Row r) {
1042 _eraseRow(_lpId(r));
1046 /// Get the name of a column
1048 ///\param c is the coresponding coloumn
1049 ///\return The name of the colunm
1050 std::string colName(Col c) const {
1052 _getColName(_lpId(c), name);
1056 /// Set the name of a column
1058 ///\param c is the coresponding coloumn
1059 ///\param name The name to be given
1060 void colName(Col c, const std::string& name) {
1061 _setColName(_lpId(c), name);
1064 /// Get the column by its name
1066 ///\param name The name of the column
1067 ///\return the proper column or \c INVALID
1068 Col colByName(const std::string& name) const {
1069 int k = _colByName(name);
1070 return k != -1 ? Col(cols.fixId(k)) : Col(INVALID);
1073 /// Set an element of the coefficient matrix of the LP
1075 ///\param r is the row of the element to be modified
1076 ///\param c is the coloumn of the element to be modified
1077 ///\param val is the new value of the coefficient
1079 void coeff(Row r, Col c, Value val) {
1080 _setCoeff(_lpId(r),_lpId(c), val);
1083 /// Get an element of the coefficient matrix of the LP
1085 ///\param r is the row of the element in question
1086 ///\param c is the coloumn of the element in question
1087 ///\return the corresponding coefficient
1089 Value coeff(Row r, Col c) const {
1090 return _getCoeff(_lpId(r),_lpId(c));
1093 /// Set the lower bound of a column (i.e a variable)
1095 /// The lower bound of a variable (column) has to be given by an
1096 /// extended number of type Value, i.e. a finite number of type
1097 /// Value or -\ref INF.
1098 void colLowerBound(Col c, Value value) {
1099 _setColLowerBound(_lpId(c),value);
1102 /// Get the lower bound of a column (i.e a variable)
1104 /// This function returns the lower bound for column (variable) \t c
1105 /// (this might be -\ref INF as well).
1106 ///\return The lower bound for coloumn \t c
1107 Value colLowerBound(Col c) const {
1108 return _getColLowerBound(_lpId(c));
1111 ///\brief Set the lower bound of several columns
1112 ///(i.e a variables) at once
1114 ///This magic function takes a container as its argument
1115 ///and applies the function on all of its elements.
1116 /// The lower bound of a variable (column) has to be given by an
1117 /// extended number of type Value, i.e. a finite number of type
1118 /// Value or -\ref INF.
1121 void colLowerBound(T &t, Value value) { return 0;}
1124 typename enable_if<typename T::value_type::LpSolverCol,void>::type
1125 colLowerBound(T &t, Value value,dummy<0> = 0) {
1126 for(typename T::iterator i=t.begin();i!=t.end();++i) {
1127 colLowerBound(*i, value);
1131 typename enable_if<typename T::value_type::second_type::LpSolverCol,
1133 colLowerBound(T &t, Value value,dummy<1> = 1) {
1134 for(typename T::iterator i=t.begin();i!=t.end();++i) {
1135 colLowerBound(i->second, value);
1139 typename enable_if<typename T::MapIt::Value::LpSolverCol,
1141 colLowerBound(T &t, Value value,dummy<2> = 2) {
1142 for(typename T::MapIt i(t); i!=INVALID; ++i){
1143 colLowerBound(*i, value);
1148 /// Set the upper bound of a column (i.e a variable)
1150 /// The upper bound of a variable (column) has to be given by an
1151 /// extended number of type Value, i.e. a finite number of type
1152 /// Value or \ref INF.
1153 void colUpperBound(Col c, Value value) {
1154 _setColUpperBound(_lpId(c),value);
1157 /// Get the upper bound of a column (i.e a variable)
1159 /// This function returns the upper bound for column (variable) \t c
1160 /// (this might be \ref INF as well).
1161 ///\return The upper bound for coloumn \t c
1162 Value colUpperBound(Col c) const {
1163 return _getColUpperBound(_lpId(c));
1166 ///\brief Set the upper bound of several columns
1167 ///(i.e a variables) at once
1169 ///This magic function takes a container as its argument
1170 ///and applies the function on all of its elements.
1171 /// The upper bound of a variable (column) has to be given by an
1172 /// extended number of type Value, i.e. a finite number of type
1173 /// Value or \ref INF.
1176 void colUpperBound(T &t, Value value) { return 0;}
1179 typename enable_if<typename T::value_type::LpSolverCol,void>::type
1180 colUpperBound(T &t, Value value,dummy<0> = 0) {
1181 for(typename T::iterator i=t.begin();i!=t.end();++i) {
1182 colUpperBound(*i, value);
1186 typename enable_if<typename T::value_type::second_type::LpSolverCol,
1188 colUpperBound(T &t, Value value,dummy<1> = 1) {
1189 for(typename T::iterator i=t.begin();i!=t.end();++i) {
1190 colUpperBound(i->second, value);
1194 typename enable_if<typename T::MapIt::Value::LpSolverCol,
1196 colUpperBound(T &t, Value value,dummy<2> = 2) {
1197 for(typename T::MapIt i(t); i!=INVALID; ++i){
1198 colUpperBound(*i, value);
1203 /// Set the lower and the upper bounds of a column (i.e a variable)
1205 /// The lower and the upper bounds of
1206 /// a variable (column) have to be given by an
1207 /// extended number of type Value, i.e. a finite number of type
1208 /// Value, -\ref INF or \ref INF.
1209 void colBounds(Col c, Value lower, Value upper) {
1210 _setColLowerBound(_lpId(c),lower);
1211 _setColUpperBound(_lpId(c),upper);
1214 ///\brief Set the lower and the upper bound of several columns
1215 ///(i.e a variables) at once
1217 ///This magic function takes a container as its argument
1218 ///and applies the function on all of its elements.
1219 /// The lower and the upper bounds of
1220 /// a variable (column) have to be given by an
1221 /// extended number of type Value, i.e. a finite number of type
1222 /// Value, -\ref INF or \ref INF.
1225 void colBounds(T &t, Value lower, Value upper) { return 0;}
1228 typename enable_if<typename T::value_type::LpSolverCol,void>::type
1229 colBounds(T &t, Value lower, Value upper,dummy<0> = 0) {
1230 for(typename T::iterator i=t.begin();i!=t.end();++i) {
1231 colBounds(*i, lower, upper);
1235 typename enable_if<typename T::value_type::second_type::LpSolverCol,
1237 colBounds(T &t, Value lower, Value upper,dummy<1> = 1) {
1238 for(typename T::iterator i=t.begin();i!=t.end();++i) {
1239 colBounds(i->second, lower, upper);
1243 typename enable_if<typename T::MapIt::Value::LpSolverCol,
1245 colBounds(T &t, Value lower, Value upper,dummy<2> = 2) {
1246 for(typename T::MapIt i(t); i!=INVALID; ++i){
1247 colBounds(*i, lower, upper);
1253 /// Set the lower and the upper bounds of a row (i.e a constraint)
1255 /// The lower and the upper bound of a constraint (row) have to be
1256 /// given by an extended number of type Value, i.e. a finite
1257 /// number of type Value, -\ref INF or \ref INF. There is no
1258 /// separate function for the lower and the upper bound because
1259 /// that would have been hard to implement for CPLEX.
1260 void rowBounds(Row c, Value lower, Value upper) {
1261 _setRowBounds(_lpId(c),lower, upper);
1264 /// Get the lower and the upper bounds of a row (i.e a constraint)
1266 /// The lower and the upper bound of
1267 /// a constraint (row) are
1268 /// extended numbers of type Value, i.e. finite numbers of type
1269 /// Value, -\ref INF or \ref INF.
1270 /// \todo There is no separate function for the
1271 /// lower and the upper bound because we had problems with the
1272 /// implementation of the setting functions for CPLEX:
1273 /// check out whether this can be done for these functions.
1274 void getRowBounds(Row c, Value &lower, Value &upper) const {
1275 _getRowBounds(_lpId(c),lower, upper);
1278 ///Set an element of the objective function
1279 void objCoeff(Col c, Value v) {_setObjCoeff(_lpId(c),v); };
1281 ///Get an element of the objective function
1282 Value objCoeff(Col c) const { return _getObjCoeff(_lpId(c)); };
1284 ///Set the objective function
1286 ///\param e is a linear expression of type \ref Expr.
1289 for (Expr::iterator i=e.begin(); i!=e.end(); ++i)
1290 objCoeff((*i).first,(*i).second);
1291 obj_const_comp=e.constComp();
1294 ///Get the objective function
1296 ///\return the objective function as a linear expression of type \ref Expr.
1299 for (ColIt it(*this); it != INVALID; ++it) {
1300 double c = objCoeff(it);
1302 e.insert(std::make_pair(it, c));
1310 void max() { _setMax(); }
1312 void min() { _setMin(); }
1314 ///Query function: is this a maximization problem?
1315 bool isMax() const {return _isMax(); }
1317 ///Query function: is this a minimization problem?
1318 bool isMin() const {return !isMax(); }
1323 ///\name Solve the LP
1327 ///\e Solve the LP problem at hand
1329 ///\return The result of the optimization procedure. Possible
1330 ///values and their meanings can be found in the documentation of
1331 ///\ref SolveExitStatus.
1333 ///\todo Which method is used to solve the problem
1334 SolveExitStatus solve() { return _solve(); }
1338 ///\name Obtain the solution
1342 /// The status of the primal problem (the original LP problem)
1343 SolutionStatus primalStatus() const {
1344 return _getPrimalStatus();
1347 /// The status of the dual (of the original LP) problem
1348 SolutionStatus dualStatus() const {
1349 return _getDualStatus();
1352 ///The type of the original LP problem
1353 ProblemTypes problemType() const {
1354 return _getProblemType();
1358 Value primal(Col c) const { return _getPrimal(_lpId(c)); }
1361 Value dual(Row r) const { return _getDual(_lpId(r)); }
1364 bool isBasicCol(Col c) const { return _isBasicCol(_lpId(c)); }
1369 ///- \ref INF or -\ref INF means either infeasibility or unboundedness
1370 /// of the primal problem, depending on whether we minimize or maximize.
1371 ///- \ref NaN if no primal solution is found.
1372 ///- The (finite) objective value if an optimal solution is found.
1373 Value primalValue() const { return _getPrimalValue()+obj_const_comp;}
1379 /// \ingroup lp_group
1381 /// \brief Common base class for MIP solvers
1382 /// \todo Much more docs
1383 class MipSolverBase : virtual public LpSolverBase{
1386 ///Possible variable (coloumn) types (e.g. real, integer, binary etc.)
1388 ///Continuous variable
1392 ///Unfortunately, cplex 7.5 somewhere writes something like
1393 ///#define INTEGER 'I'
1395 ///\todo No support for other types yet.
1398 ///Sets the type of the given coloumn to the given type
1400 ///Sets the type of the given coloumn to the given type.
1401 void colType(Col c, ColTypes col_type) {
1402 _colType(_lpId(c),col_type);
1405 ///Gives back the type of the column.
1407 ///Gives back the type of the column.
1408 ColTypes colType(Col c) const {
1409 return _colType(_lpId(c));
1412 ///Sets the type of the given Col to integer or remove that property.
1414 ///Sets the type of the given Col to integer or remove that property.
1415 void integer(Col c, bool enable) {
1422 ///Gives back whether the type of the column is integer or not.
1424 ///Gives back the type of the column.
1425 ///\return true if the column has integer type and false if not.
1426 bool integer(Col c) const {
1427 return (colType(c)==INT);
1430 /// The status of the MIP problem
1431 SolutionStatus mipStatus() const {
1432 return _getMipStatus();
1437 virtual ColTypes _colType(int col) const = 0;
1438 virtual void _colType(int col, ColTypes col_type) = 0;
1439 virtual SolutionStatus _getMipStatus() const = 0;
1443 ///\relates LpSolverBase::Expr
1445 inline LpSolverBase::Expr operator+(const LpSolverBase::Expr &a,
1446 const LpSolverBase::Expr &b)
1448 LpSolverBase::Expr tmp(a);
1454 ///\relates LpSolverBase::Expr
1456 inline LpSolverBase::Expr operator-(const LpSolverBase::Expr &a,
1457 const LpSolverBase::Expr &b)
1459 LpSolverBase::Expr tmp(a);
1465 ///\relates LpSolverBase::Expr
1467 inline LpSolverBase::Expr operator*(const LpSolverBase::Expr &a,
1468 const LpSolverBase::Value &b)
1470 LpSolverBase::Expr tmp(a);
1477 ///\relates LpSolverBase::Expr
1479 inline LpSolverBase::Expr operator*(const LpSolverBase::Value &a,
1480 const LpSolverBase::Expr &b)
1482 LpSolverBase::Expr tmp(b);
1488 ///\relates LpSolverBase::Expr
1490 inline LpSolverBase::Expr operator/(const LpSolverBase::Expr &a,
1491 const LpSolverBase::Value &b)
1493 LpSolverBase::Expr tmp(a);
1500 ///\relates LpSolverBase::Constr
1502 inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
1503 const LpSolverBase::Expr &f)
1505 return LpSolverBase::Constr(-LpSolverBase::INF,e-f,0);
1510 ///\relates LpSolverBase::Constr
1512 inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &e,
1513 const LpSolverBase::Expr &f)
1515 return LpSolverBase::Constr(e,f);
1520 ///\relates LpSolverBase::Constr
1522 inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
1523 const LpSolverBase::Value &f)
1525 return LpSolverBase::Constr(e,f);
1530 ///\relates LpSolverBase::Constr
1532 inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
1533 const LpSolverBase::Expr &f)
1535 return LpSolverBase::Constr(-LpSolverBase::INF,f-e,0);
1541 ///\relates LpSolverBase::Constr
1543 inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &e,
1544 const LpSolverBase::Expr &f)
1546 return LpSolverBase::Constr(f,e);
1552 ///\relates LpSolverBase::Constr
1554 inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
1555 const LpSolverBase::Value &f)
1557 return LpSolverBase::Constr(f,e);
1562 ///\relates LpSolverBase::Constr
1564 inline LpSolverBase::Constr operator==(const LpSolverBase::Expr &e,
1565 const LpSolverBase::Value &f)
1567 return LpSolverBase::Constr(f,e,f);
1572 ///\relates LpSolverBase::Constr
1574 inline LpSolverBase::Constr operator==(const LpSolverBase::Expr &e,
1575 const LpSolverBase::Expr &f)
1577 return LpSolverBase::Constr(0,e-f,0);
1582 ///\relates LpSolverBase::Constr
1584 inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &n,
1585 const LpSolverBase::Constr&c)
1587 LpSolverBase::Constr tmp(c);
1588 ///\todo Create an own exception type.
1589 if(!LpSolverBase::isNaN(tmp.lowerBound())) throw LogicError();
1590 else tmp.lowerBound()=n;
1595 ///\relates LpSolverBase::Constr
1597 inline LpSolverBase::Constr operator<=(const LpSolverBase::Constr& c,
1598 const LpSolverBase::Value &n)
1600 LpSolverBase::Constr tmp(c);
1601 ///\todo Create an own exception type.
1602 if(!LpSolverBase::isNaN(tmp.upperBound())) throw LogicError();
1603 else tmp.upperBound()=n;
1609 ///\relates LpSolverBase::Constr
1611 inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &n,
1612 const LpSolverBase::Constr&c)
1614 LpSolverBase::Constr tmp(c);
1615 ///\todo Create an own exception type.
1616 if(!LpSolverBase::isNaN(tmp.upperBound())) throw LogicError();
1617 else tmp.upperBound()=n;
1622 ///\relates LpSolverBase::Constr
1624 inline LpSolverBase::Constr operator>=(const LpSolverBase::Constr& c,
1625 const LpSolverBase::Value &n)
1627 LpSolverBase::Constr tmp(c);
1628 ///\todo Create an own exception type.
1629 if(!LpSolverBase::isNaN(tmp.lowerBound())) throw LogicError();
1630 else tmp.lowerBound()=n;
1636 ///\relates LpSolverBase::DualExpr
1638 inline LpSolverBase::DualExpr operator+(const LpSolverBase::DualExpr &a,
1639 const LpSolverBase::DualExpr &b)
1641 LpSolverBase::DualExpr tmp(a);
1647 ///\relates LpSolverBase::DualExpr
1649 inline LpSolverBase::DualExpr operator-(const LpSolverBase::DualExpr &a,
1650 const LpSolverBase::DualExpr &b)
1652 LpSolverBase::DualExpr tmp(a);
1658 ///\relates LpSolverBase::DualExpr
1660 inline LpSolverBase::DualExpr operator*(const LpSolverBase::DualExpr &a,
1661 const LpSolverBase::Value &b)
1663 LpSolverBase::DualExpr tmp(a);
1670 ///\relates LpSolverBase::DualExpr
1672 inline LpSolverBase::DualExpr operator*(const LpSolverBase::Value &a,
1673 const LpSolverBase::DualExpr &b)
1675 LpSolverBase::DualExpr tmp(b);
1681 ///\relates LpSolverBase::DualExpr
1683 inline LpSolverBase::DualExpr operator/(const LpSolverBase::DualExpr &a,
1684 const LpSolverBase::Value &b)
1686 LpSolverBase::DualExpr tmp(a);
1694 #endif //LEMON_LP_BASE_H