2 * src/lemon/lp_base.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Combinatorial Optimization Research Group, EGRES).
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
17 #ifndef LEMON_LP_BASE_H
18 #define LEMON_LP_BASE_H
25 #include<lemon/utility.h>
26 #include<lemon/error.h>
27 #include<lemon/invalid.h>
29 //#include"lin_expr.h"
32 ///\brief The interface of the LP solver interface.
35 ///Internal data structure to convert floating id's to fix one's
37 ///\todo This might be implemented to be also usable in other places.
40 std::vector<int> index;
41 std::vector<int> cross;
44 _FixId() : first_free(-1) {};
45 ///Convert a floating id to a fix one
47 ///\param n is a floating id
48 ///\return the corresponding fix id
49 int fixId(int n) {return cross[n];}
50 ///Convert a fix id to a floating one
52 ///\param n is a fix id
53 ///\return the corresponding floating id
54 int floatingId(int n) { return index[n];}
55 ///Add a new floating id.
57 ///\param n is a floating id
58 ///\return the fix id of the new value
59 ///\todo Multiple additions should also be handled.
62 if(n>=int(cross.size())) {
65 cross[n]=index.size();
70 int next=index[first_free];
76 ///\todo Create an own exception type.
77 else throw LogicError(); //floatingId-s must form a continuous range;
81 ///\param n is a fix id
88 for(int i=fl+1;i<int(cross.size());++i) {
94 ///An upper bound on the largest fix id.
96 ///\todo Do we need this?
98 std::size_t maxFixId() { return cross.size()-1; }
102 ///Common base class for LP solvers
108 enum SolveExitStatus {
116 enum SolutionStatus {
117 ///Feasible solution has'n been found (but may exist).
119 ///\todo NOTFOUND might be a better name.
122 ///The problem has no feasible solution
124 ///Feasible solution found
126 ///Optimal solution exists and found
128 ///The cost function is unbounded
130 ///\todo Give a feasible solution and an infinite ray (and the
131 ///corresponding bases)
135 ///The floating point type used by the solver
136 typedef double Value;
137 ///The infinity constant
138 static const Value INF;
139 ///The not a number constant
140 static const Value NaN;
142 ///Refer to a column of the LP.
144 ///This type is used to refer to a column of the LP.
146 ///Its value remains valid and correct even after the addition or erase of
149 ///\todo Document what can one do with a Col (INVALID, comparing,
150 ///it is similar to Node/Edge)
154 friend class LpSolverBase;
156 typedef Value ExprValue;
157 typedef True LpSolverCol;
159 Col(const Invalid&) : id(-1) {}
160 bool operator<(Col c) const {return id<c.id;}
161 bool operator==(Col c) const {return id==c.id;}
162 bool operator!=(Col c) const {return id==c.id;}
165 ///Refer to a row of the LP.
167 ///This type is used to refer to a row of the LP.
169 ///Its value remains valid and correct even after the addition or erase of
172 ///\todo Document what can one do with a Row (INVALID, comparing,
173 ///it is similar to Node/Edge)
177 friend class LpSolverBase;
179 typedef Value ExprValue;
180 typedef True LpSolverRow;
182 Row(const Invalid&) : id(-1) {}
183 typedef True LpSolverRow;
184 bool operator<(Row c) const {return id<c.id;}
185 bool operator==(Row c) const {return id==c.id;}
186 bool operator!=(Row c) const {return id==c.id;}
189 ///Linear expression of variables and a constant component
191 ///This data structure strores a linear expression of the variables
192 ///(\ref Col "Col"s) and also has a constant component.
194 ///There are several ways to access and modify the contents of this
196 ///- Its it fully compatible with \c std::map<Col,double>, so for expamle
197 ///if \c e is an Expr and \c v and \c w are of type \ref Col then you can
198 ///read and modify the coefficients like
205 ///or you can also iterate through its elements.
208 ///for(LpSolverBase::Expr::iterator i=e.begin();i!=e.end();++i)
211 ///(This code computes the sum of all coefficients).
212 ///- Numbers (<tt>double</tt>'s)
213 ///and variables (\ref Col "Col"s) directly convert to an
214 ///\ref Expr and the usual linear operations are defined so
217 ///2*v-3.12*(v-w/2)+2
218 ///v*2.1+(3*v+(v*12+w+6)*3)/2
220 ///are valid expressions. The usual assignment operations are also defined.
223 ///e+=2*v-3.12*(v-w/2)+2;
227 ///- The constant member can be set and read by \ref constComp()
230 ///double c=e.constComp();
233 ///\note that \ref clear() not only sets all coefficients to 0 but also
234 ///clears the constant components.
235 class Expr : public std::map<Col,Value>
238 typedef LpSolverBase::Col Key;
239 typedef LpSolverBase::Value Value;
242 typedef std::map<Col,Value> Base;
246 typedef True IsLinExpression;
248 Expr() : Base(), const_comp(0) { }
250 Expr(const Key &v) : const_comp(0) {
251 Base::insert(std::make_pair(v, 1));
254 Expr(const Value &v) : const_comp(v) {}
256 void set(const Key &v,const Value &c) {
257 Base::insert(std::make_pair(v, c));
260 Value &constComp() { return const_comp; }
262 const Value &constComp() const { return const_comp; }
264 ///Removes the components with zero coefficient.
266 for (Base::iterator i=Base::begin(); i!=Base::end();) {
269 if ((*i).second==0) Base::erase(i);
274 ///Sets all coefficients and the constant component to 0.
281 Expr &operator+=(const Expr &e) {
282 for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
283 (*this)[j->first]+=j->second;
284 ///\todo it might be speeded up using "hints"
285 const_comp+=e.const_comp;
289 Expr &operator-=(const Expr &e) {
290 for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
291 (*this)[j->first]-=j->second;
292 const_comp-=e.const_comp;
296 Expr &operator*=(const Value &c) {
297 for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
303 Expr &operator/=(const Value &c) {
304 for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
312 //typedef LinConstr<Expr> Constr;
316 typedef LpSolverBase::Expr Expr;
317 typedef Expr::Key Key;
318 typedef Expr::Value Value;
320 static const Value INF;
321 static const Value NaN;
322 // static const Value INF=0;
323 // static const Value NaN=1;
330 Constr() : _expr(), _lb(NaN), _ub(NaN) {}
332 Constr(Value lb,const Expr &e,Value ub) :
333 _expr(e), _lb(lb), _ub(ub) {}
335 Constr(const Expr &e,Value ub) :
336 _expr(e), _lb(NaN), _ub(ub) {}
338 Constr(Value lb,const Expr &e) :
339 _expr(e), _lb(lb), _ub(NaN) {}
341 Constr(const Expr &e) :
342 _expr(e), _lb(NaN), _ub(NaN) {}
350 Expr &expr() { return _expr; }
352 const Expr &expr() const { return _expr; }
354 Value &lowerBound() { return _lb; }
356 const Value &lowerBound() const { return _lb; }
358 Value &upperBound() { return _ub; }
360 const Value &upperBound() const { return _ub; }
362 bool lowerBounded() const {
364 return isfinite(_lb);
367 bool upperBounded() const {
369 return isfinite(_ub);
378 virtual int _addCol() = 0;
379 virtual int _addRow() = 0;
380 virtual void _setRowCoeffs(int i,
383 Value const * values ) = 0;
384 virtual void _setColCoeffs(int i,
387 Value const * values ) = 0;
388 virtual void _setColLowerBound(int i, Value value) = 0;
389 virtual void _setColUpperBound(int i, Value value) = 0;
390 virtual void _setRowLowerBound(int i, Value value) = 0;
391 virtual void _setRowUpperBound(int i, Value value) = 0;
392 virtual void _setObjCoeff(int i, Value obj_coef) = 0;
393 virtual SolveExitStatus _solve() = 0;
394 virtual Value _getPrimal(int i) = 0;
395 virtual SolutionStatus _getPrimalType() = 0;
403 virtual ~LpSolverBase() {}
405 ///\name Build up and modify of the LP
409 ///Add a new empty column (i.e a new variable) to the LP
410 Col addCol() { Col c; c.id=cols.insert(_addCol()); return c;}
412 ///\brief Adds several new columns
413 ///(i.e a variables) at once
415 ///This magic function takes a container as its argument
416 ///and fills its elements
417 ///with new columns (i.e. variables)
419 ///- a standard STL compatible iterable container with
420 ///\ref Col as its \c values_type
423 ///std::vector<LpSolverBase::Col>
424 ///std::list<LpSolverBase::Col>
426 ///- a standard STL compatible iterable container with
427 ///\ref Col as its \c mapped_type
430 ///std::map<AnyType,LpSolverBase::Col>
432 ///- an iterable lemon \ref concept::WriteMap "write map" like
434 ///ListGraph::NodeMap<LpSolverBase::Col>
435 ///ListGraph::EdgeMap<LpSolverBase::Col>
437 ///\return The number of the created column.
438 ///\bug Iterable nodemap hasn't been implemented yet.
441 int addColSet(T &t) { return 0;}
444 typename enable_if<typename T::value_type::LpSolverCol,int>::type
445 addColSet(T &t,dummy<0> = 0) {
447 for(typename T::iterator i=t.begin();i!=t.end();++i) {*i=addCol();s++;}
451 typename enable_if<typename T::value_type::second_type::LpSolverCol,
453 addColSet(T &t,dummy<1> = 1) {
455 for(typename T::iterator i=t.begin();i!=t.end();++i) {
462 typename enable_if<typename T::ValueSet::value_type::LpSolverCol,
464 addColSet(T &t,dummy<2> = 2) {
465 ///\bug <tt>return addColSet(t.valueSet());</tt> should also work.
467 for(typename T::ValueSet::iterator i=t.valueSet().begin();
468 i!=t.valueSet().end();
478 ///Add a new empty row (i.e a new constaint) to the LP
480 ///This function adds a new empty row (i.e a new constaint) to the LP.
481 ///\return The created row
482 Row addRow() { Row r; r.id=rows.insert(_addRow()); return r;}
484 ///Set a row (i.e a constaint) of the LP
486 ///\param r is the row to be modified
487 ///\param l is lower bound (-\ref INF means no bound)
488 ///\param e is a linear expression (see \ref Expr)
489 ///\param u is the upper bound (\ref INF means no bound)
490 ///\bug This is a temportary function. The interface will change to
492 void setRow(Row r, Value l,const Expr &e, Value u) {
493 std::vector<int> indices;
494 std::vector<Value> values;
495 indices.push_back(0);
497 for(Expr::const_iterator i=e.begin(); i!=e.end(); ++i)
498 if((*i).second!=0) { ///\bug EPSILON would be necessary here!!!
499 indices.push_back(cols.floatingId((*i).first.id));
500 values.push_back((*i).second);
502 _setRowCoeffs(rows.floatingId(r.id),indices.size()-1,
503 &indices[0],&values[0]);
504 _setRowLowerBound(rows.floatingId(r.id),l-e.constComp());
505 _setRowUpperBound(rows.floatingId(r.id),u-e.constComp());
508 ///Set a row (i.e a constaint) of the LP
510 ///\param r is the row to be modified
511 ///\param c is a linear expression (see \ref Constr)
512 void setRow(Row r, const Constr &c) {
514 c.lowerBounded()?c.lowerBound():-INF,
516 c.upperBounded()?c.upperBound():INF);
519 ///Add a new row (i.e a new constaint) to the LP
521 ///\param l is the lower bound (-\ref INF means no bound)
522 ///\param e is a linear expression (see \ref Expr)
523 ///\param u is the upper bound (\ref INF means no bound)
524 ///\return The created row.
525 ///\bug This is a temportary function. The interface will change to
527 Row addRow(Value l,const Expr &e, Value u) {
533 ///Add a new row (i.e a new constaint) to the LP
535 ///\param c is a linear expression (see \ref Constr)
536 ///\return The created row.
537 Row addRow(const Constr &c) {
543 /// Set the lower bound of a column (i.e a variable)
545 /// The upper bound of a variable (column) has to be given by an
546 /// extended number of type Value, i.e. a finite number of type
547 /// Value or -\ref INF.
548 void colLowerBound(Col c, Value value) {
549 _setColLowerBound(cols.floatingId(c.id),value);
551 /// Set the upper bound of a column (i.e a variable)
553 /// The upper bound of a variable (column) has to be given by an
554 /// extended number of type Value, i.e. a finite number of type
555 /// Value or \ref INF.
556 void colUpperBound(Col c, Value value) {
557 _setColUpperBound(cols.floatingId(c.id),value);
559 /// Set the lower and the upper bounds of a column (i.e a variable)
561 /// The lower and the upper bounds of
562 /// a variable (column) have to be given by an
563 /// extended number of type Value, i.e. a finite number of type
564 /// Value, -\ref INF or \ref INF.
565 void colBounds(Col c, Value lower, Value upper) {
566 _setColLowerBound(cols.floatingId(c.id),lower);
567 _setColUpperBound(cols.floatingId(c.id),upper);
570 /// Set the lower bound of a row (i.e a constraint)
572 /// The lower bound of a linear expression (row) has to be given by an
573 /// extended number of type Value, i.e. a finite number of type
574 /// Value or -\ref INF.
575 void rowLowerBound(Row r, Value value) {
576 _setRowLowerBound(rows.floatingId(r.id),value);
578 /// Set the upper bound of a row (i.e a constraint)
580 /// The upper bound of a linear expression (row) has to be given by an
581 /// extended number of type Value, i.e. a finite number of type
582 /// Value or \ref INF.
583 void rowUpperBound(Row r, Value value) {
584 _setRowUpperBound(rows.floatingId(r.id),value);
586 /// Set the lower and the upper bounds of a row (i.e a variable)
588 /// The lower and the upper bounds of
589 /// a constraint (row) have to be given by an
590 /// extended number of type Value, i.e. a finite number of type
591 /// Value, -\ref INF or \ref INF.
592 void rowBounds(Row c, Value lower, Value upper) {
593 _setRowLowerBound(rows.floatingId(c.id),lower);
594 _setRowUpperBound(rows.floatingId(c.id),upper);
597 ///Set an element of the objective function
598 void objCoeff(Col c, Value v) {_setObjCoeff(cols.floatingId(c.id),v); };
599 ///Set the objective function
601 ///\param e is a linear expression of type \ref Expr.
602 ///\todo What to do with the constant component?
603 void setObj(Expr e) {
605 for (Expr::iterator i=e.begin(); i!=e.end(); ++i)
606 objCoeff((*i).first,(*i).second);
612 ///\name Solve the LP
617 SolveExitStatus solve() { return _solve(); }
621 ///\name Obtain the solution
626 SolutionStatus primalType() {
627 return _getPrimalType();
631 Value primal(Col c) { return _getPrimal(cols.floatingId(c.id)); }
639 ///\relates LpSolverBase::Expr
641 inline LpSolverBase::Expr operator+(const LpSolverBase::Expr &a,
642 const LpSolverBase::Expr &b)
644 LpSolverBase::Expr tmp(a);
645 tmp+=b; ///\todo Don't STL have some special 'merge' algorithm?
650 ///\relates LpSolverBase::Expr
652 inline LpSolverBase::Expr operator-(const LpSolverBase::Expr &a,
653 const LpSolverBase::Expr &b)
655 LpSolverBase::Expr tmp(a);
656 tmp-=b; ///\todo Don't STL have some special 'merge' algorithm?
661 ///\relates LpSolverBase::Expr
663 inline LpSolverBase::Expr operator*(const LpSolverBase::Expr &a,
664 const LpSolverBase::Value &b)
666 LpSolverBase::Expr tmp(a);
667 tmp*=b; ///\todo Don't STL have some special 'merge' algorithm?
673 ///\relates LpSolverBase::Expr
675 inline LpSolverBase::Expr operator*(const LpSolverBase::Value &a,
676 const LpSolverBase::Expr &b)
678 LpSolverBase::Expr tmp(b);
679 tmp*=a; ///\todo Don't STL have some special 'merge' algorithm?
684 ///\relates LpSolverBase::Expr
686 inline LpSolverBase::Expr operator/(const LpSolverBase::Expr &a,
687 const LpSolverBase::Value &b)
689 LpSolverBase::Expr tmp(a);
690 tmp/=b; ///\todo Don't STL have some special 'merge' algorithm?
696 ///\relates LpSolverBase::Constr
698 inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
699 const LpSolverBase::Expr &f)
701 return LpSolverBase::Constr(-LpSolverBase::INF,e-f,0);
706 ///\relates LpSolverBase::Constr
708 inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &e,
709 const LpSolverBase::Expr &f)
711 return LpSolverBase::Constr(e,f);
716 ///\relates LpSolverBase::Constr
718 inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
719 const LpSolverBase::Value &f)
721 return LpSolverBase::Constr(e,f);
726 ///\relates LpSolverBase::Constr
728 inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
729 const LpSolverBase::Expr &f)
731 return LpSolverBase::Constr(-LpSolverBase::INF,f-e,0);
737 ///\relates LpSolverBase::Constr
739 inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &e,
740 const LpSolverBase::Expr &f)
742 return LpSolverBase::Constr(f,e);
748 ///\relates LpSolverBase::Constr
750 inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
751 const LpSolverBase::Value &f)
753 return LpSolverBase::Constr(f,e);
758 ///\relates LpSolverBase::Constr
760 inline LpSolverBase::Constr operator==(const LpSolverBase::Expr &e,
761 const LpSolverBase::Expr &f)
763 return LpSolverBase::Constr(0,e-f,0);
768 ///\relates LpSolverBase::Constr
770 inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &n,
771 const LpSolverBase::Constr&c)
773 LpSolverBase::Constr tmp(c);
774 ///\todo Create an own exception type.
775 if(!isnan(tmp.lowerBound())) throw LogicError();
776 else tmp.lowerBound()=n;
781 ///\relates LpSolverBase::Constr
783 inline LpSolverBase::Constr operator<=(const LpSolverBase::Constr& c,
784 const LpSolverBase::Value &n)
786 LpSolverBase::Constr tmp(c);
787 ///\todo Create an own exception type.
788 if(!isnan(tmp.upperBound())) throw LogicError();
789 else tmp.upperBound()=n;
795 ///\relates LpSolverBase::Constr
797 inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &n,
798 const LpSolverBase::Constr&c)
800 LpSolverBase::Constr tmp(c);
801 ///\todo Create an own exception type.
802 if(!isnan(tmp.upperBound())) throw LogicError();
803 else tmp.upperBound()=n;
808 ///\relates LpSolverBase::Constr
810 inline LpSolverBase::Constr operator>=(const LpSolverBase::Constr& c,
811 const LpSolverBase::Value &n)
813 LpSolverBase::Constr tmp(c);
814 ///\todo Create an own exception type.
815 if(!isnan(tmp.lowerBound())) throw LogicError();
816 else tmp.lowerBound()=n;
823 #endif //LEMON_LP_BASE_H