COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/lp_base.h @ 2629:84354c78b068

Last change on this file since 2629:84354c78b068 was 2618:6aa6fcaeaea5, checked in by Balazs Dezso, 16 years ago

G++-4.3 compatibility changes

File size: 47.0 KB
RevLine 
[1247]1/* -*- C++ -*-
2 *
[1956]3 * This file is a part of LEMON, a generic C++ optimization library
4 *
[2553]5 * Copyright (C) 2003-2008
[1956]6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
[1359]7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
[1247]8 *
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.
12 *
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
15 * purpose.
16 *
17 */
18
[1246]19#ifndef LEMON_LP_BASE_H
20#define LEMON_LP_BASE_H
21
[2345]22#include<iostream>
[1253]23#include<vector>
[1272]24#include<map>
[1256]25#include<limits>
[2569]26#include<lemon/math.h>
[1253]27
28#include<lemon/error.h>
[1993]29#include<lemon/bits/invalid.h>
[2363]30#include<lemon/bits/utility.h>
31#include<lemon/bits/lp_id.h>
[1253]32
[1246]33///\file
34///\brief The interface of the LP solver interface.
[2370]35///\ingroup lp_group
[1246]36namespace lemon {
[2312]37
[2495]38  /// Function to decide whether a floating point value is finite or not.
39
40  /// Retruns true if the argument is not infinity, minus infinity or NaN.
41  /// It does the same as the isfinite() function defined by C99.
42  template <typename T>
43  bool isFinite(T value)
44  {
45    typedef std::numeric_limits<T> Lim;
[2618]46    if ((Lim::has_infinity && (value == Lim::infinity() || value ==
47                               -Lim::infinity())) ||
48        ((Lim::has_quiet_NaN || Lim::has_signaling_NaN) && value != value))
[2495]49    {
50      return false;
51    }
52    return true;
53  }
54
[1253]55  ///Common base class for LP solvers
[1328]56 
57  ///\todo Much more docs
[2370]58  ///\ingroup lp_group
[1246]59  class LpSolverBase {
[1323]60
[2303]61  protected:
62
[2363]63    _lp_bits::LpId rows;
64    _lp_bits::LpId cols;
65   
[1247]66  public:
[2364]67   
[1458]68    ///Possible outcomes of an LP solving procedure
[1303]69    enum SolveExitStatus {
[1458]70      ///This means that the problem has been successfully solved: either
71      ///an optimal solution has been found or infeasibility/unboundedness
72      ///has been proved.
[1293]73      SOLVED = 0,
[2312]74      ///Any other case (including the case when some user specified
75      ///limit has been exceeded)
[1293]76      UNSOLVED = 1
[1291]77    };
78     
[1460]79      ///\e
[1303]80    enum SolutionStatus {
[2185]81      ///Feasible solution hasn't been found (but may exist).
[1295]82
83      ///\todo NOTFOUND might be a better name.
84      ///
[1293]85      UNDEFINED = 0,
[1295]86      ///The problem has no feasible solution
[1293]87      INFEASIBLE = 1,
[1295]88      ///Feasible solution found
[1293]89      FEASIBLE = 2,
[1295]90      ///Optimal solution exists and found
91      OPTIMAL = 3,
92      ///The cost function is unbounded
93
94      ///\todo Give a feasible solution and an infinite ray (and the
95      ///corresponding bases)
96      INFINITE = 4
[1263]97    };
[1460]98
[1542]99    ///\e The type of the investigated LP problem
100    enum ProblemTypes {
101      ///Primal-dual feasible
102      PRIMAL_DUAL_FEASIBLE = 0,
103      ///Primal feasible dual infeasible
104      PRIMAL_FEASIBLE_DUAL_INFEASIBLE = 1,
105      ///Primal infeasible dual feasible
106      PRIMAL_INFEASIBLE_DUAL_FEASIBLE = 2,
107      ///Primal-dual infeasible
108      PRIMAL_DUAL_INFEASIBLE = 3,
109      ///Could not determine so far
110      UNKNOWN = 4
111    };
[1508]112
[1256]113    ///The floating point type used by the solver
[1247]114    typedef double Value;
[1256]115    ///The infinity constant
[1247]116    static const Value INF;
[1264]117    ///The not a number constant
118    static const Value NaN;
[2026]119
120    static inline bool isNaN(const Value& v) { return v!=v; }
[1253]121   
[2303]122    friend class Col;
123    friend class ColIt;
124    friend class Row;
125   
[1256]126    ///Refer to a column of the LP.
127
128    ///This type is used to refer to a column of the LP.
129    ///
130    ///Its value remains valid and correct even after the addition or erase of
[1273]131    ///other columns.
[1256]132    ///
133    ///\todo Document what can one do with a Col (INVALID, comparing,
134    ///it is similar to Node/Edge)
135    class Col {
136    protected:
137      int id;
138      friend class LpSolverBase;
[2144]139      friend class MipSolverBase;
[2364]140      explicit Col(int _id) : id(_id) {}
[1256]141    public:
[1259]142      typedef Value ExprValue;
[1256]143      typedef True LpSolverCol;
144      Col() {}
145      Col(const Invalid&) : id(-1) {}
[1900]146      bool operator< (Col c) const  {return id< c.id;}
147      bool operator> (Col c) const  {return id> c.id;}
[1256]148      bool operator==(Col c) const  {return id==c.id;}
[1900]149      bool operator!=(Col c) const  {return id!=c.id;}
[1256]150    };
151
[2303]152    class ColIt : public Col {
[2366]153      const LpSolverBase *_lp;
[2309]154    public:
[2303]155      ColIt() {}
[2366]156      ColIt(const LpSolverBase &lp) : _lp(&lp)
[2303]157      {
[2363]158        _lp->cols.firstFix(id);
[2303]159      }
160      ColIt(const Invalid&) : Col(INVALID) {}
161      ColIt &operator++()
162      {
[2363]163        _lp->cols.nextFix(id);
[2303]164        return *this;
165      }
166    };
[2312]167
168    static int id(const Col& col) { return col.id; }
169 
[2303]170     
[1256]171    ///Refer to a row of the LP.
172
173    ///This type is used to refer to a row of the LP.
174    ///
175    ///Its value remains valid and correct even after the addition or erase of
[1273]176    ///other rows.
[1256]177    ///
178    ///\todo Document what can one do with a Row (INVALID, comparing,
179    ///it is similar to Node/Edge)
180    class Row {
181    protected:
182      int id;
183      friend class LpSolverBase;
[2364]184      explicit Row(int _id) : id(_id) {}
[1256]185    public:
[1259]186      typedef Value ExprValue;
[1256]187      typedef True LpSolverRow;
188      Row() {}
189      Row(const Invalid&) : id(-1) {}
[1439]190
[1900]191      bool operator< (Row c) const  {return id< c.id;}
192      bool operator> (Row c) const  {return id> c.id;}
[1256]193      bool operator==(Row c) const  {return id==c.id;}
[1900]194      bool operator!=(Row c) const  {return id!=c.id;}
[2312]195    };
196
[2364]197    class RowIt : public Row {
[2366]198      const LpSolverBase *_lp;
[2364]199    public:
200      RowIt() {}
[2366]201      RowIt(const LpSolverBase &lp) : _lp(&lp)
[2364]202      {
203        _lp->rows.firstFix(id);
204      }
205      RowIt(const Invalid&) : Row(INVALID) {}
206      RowIt &operator++()
207      {
208        _lp->rows.nextFix(id);
209        return *this;
210      }
211    };
212
[2312]213    static int id(const Row& row) { return row.id; }
214
215  protected:
216
[2386]217    int _lpId(const Col& c) const {
218      return cols.floatingId(id(c));
[2312]219    }
220
[2386]221    int _lpId(const Row& r) const {
222      return rows.floatingId(id(r));
[2312]223    }
224
[2386]225    Col _item(int i, Col) const {
226      return Col(cols.fixId(i));
[2364]227    }
228
[2386]229    Row _item(int i, Row) const {
230      return Row(rows.fixId(i));
[2364]231    }
232
[2312]233
234  public:
[1259]235   
[1279]236    ///Linear expression of variables and a constant component
237   
[2345]238    ///This data structure stores a linear expression of the variables
[1279]239    ///(\ref Col "Col"s) and also has a constant component.
240    ///
241    ///There are several ways to access and modify the contents of this
242    ///container.
243    ///- Its it fully compatible with \c std::map<Col,double>, so for expamle
[1364]244    ///if \c e is an Expr and \c v and \c w are of type \ref Col, then you can
[1279]245    ///read and modify the coefficients like
246    ///these.
247    ///\code
248    ///e[v]=5;
249    ///e[v]+=12;
250    ///e.erase(v);
251    ///\endcode
252    ///or you can also iterate through its elements.
253    ///\code
254    ///double s=0;
255    ///for(LpSolverBase::Expr::iterator i=e.begin();i!=e.end();++i)
256    ///  s+=i->second;
257    ///\endcode
258    ///(This code computes the sum of all coefficients).
259    ///- Numbers (<tt>double</tt>'s)
260    ///and variables (\ref Col "Col"s) directly convert to an
[1908]261    ///\ref Expr and the usual linear operations are defined, so 
[1279]262    ///\code
263    ///v+w
264    ///2*v-3.12*(v-w/2)+2
265    ///v*2.1+(3*v+(v*12+w+6)*3)/2
266    ///\endcode
[1328]267    ///are valid \ref Expr "Expr"essions.
268    ///The usual assignment operations are also defined.
[1279]269    ///\code
270    ///e=v+w;
271    ///e+=2*v-3.12*(v-w/2)+2;
272    ///e*=3.4;
273    ///e/=5;
274    ///\endcode
275    ///- The constant member can be set and read by \ref constComp()
276    ///\code
277    ///e.constComp()=12;
278    ///double c=e.constComp();
279    ///\endcode
280    ///
[1328]281    ///\note \ref clear() not only sets all coefficients to 0 but also
[1279]282    ///clears the constant components.
[1328]283    ///
284    ///\sa Constr
285    ///
[1273]286    class Expr : public std::map<Col,Value>
[1272]287    {
288    public:
[1273]289      typedef LpSolverBase::Col Key;
290      typedef LpSolverBase::Value Value;
[1272]291     
292    protected:
[1273]293      typedef std::map<Col,Value> Base;
[1272]294     
[1273]295      Value const_comp;
[2345]296    public:
[1272]297      typedef True IsLinExpression;
298      ///\e
299      Expr() : Base(), const_comp(0) { }
300      ///\e
[1273]301      Expr(const Key &v) : const_comp(0) {
[1272]302        Base::insert(std::make_pair(v, 1));
303      }
304      ///\e
[1273]305      Expr(const Value &v) : const_comp(v) {}
[1272]306      ///\e
[1273]307      void set(const Key &v,const Value &c) {
[1272]308        Base::insert(std::make_pair(v, c));
309      }
310      ///\e
[1273]311      Value &constComp() { return const_comp; }
[1272]312      ///\e
[1273]313      const Value &constComp() const { return const_comp; }
[1272]314     
315      ///Removes the components with zero coefficient.
316      void simplify() {
317        for (Base::iterator i=Base::begin(); i!=Base::end();) {
318          Base::iterator j=i;
319          ++j;
320          if ((*i).second==0) Base::erase(i);
[2085]321          i=j;
[1272]322        }
323      }
[1273]324
[2312]325      void simplify() const {
326        const_cast<Expr*>(this)->simplify();
327      }
328
[1771]329      ///Removes the coefficients closer to zero than \c tolerance.
330      void simplify(double &tolerance) {
331        for (Base::iterator i=Base::begin(); i!=Base::end();) {
332          Base::iterator j=i;
333          ++j;
334          if (std::fabs((*i).second)<tolerance) Base::erase(i);
[2085]335          i=j;
[1771]336        }
337      }
338
[1273]339      ///Sets all coefficients and the constant component to 0.
340      void clear() {
341        Base::clear();
342        const_comp=0;
343      }
344
[1272]345      ///\e
346      Expr &operator+=(const Expr &e) {
347        for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
348          (*this)[j->first]+=j->second;
349        const_comp+=e.const_comp;
350        return *this;
351      }
352      ///\e
353      Expr &operator-=(const Expr &e) {
354        for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
355          (*this)[j->first]-=j->second;
356        const_comp-=e.const_comp;
357        return *this;
358      }
359      ///\e
[1273]360      Expr &operator*=(const Value &c) {
[1272]361        for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
362          j->second*=c;
363        const_comp*=c;
364        return *this;
365      }
366      ///\e
[1273]367      Expr &operator/=(const Value &c) {
[1272]368        for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
369          j->second/=c;
370        const_comp/=c;
371        return *this;
372      }
[2345]373
[1272]374    };
375   
[1264]376    ///Linear constraint
[1328]377
[1364]378    ///This data stucture represents a linear constraint in the LP.
379    ///Basically it is a linear expression with a lower or an upper bound
380    ///(or both). These parts of the constraint can be obtained by the member
381    ///functions \ref expr(), \ref lowerBound() and \ref upperBound(),
382    ///respectively.
383    ///There are two ways to construct a constraint.
384    ///- You can set the linear expression and the bounds directly
385    ///  by the functions above.
386    ///- The operators <tt>\<=</tt>, <tt>==</tt> and  <tt>\>=</tt>
387    ///  are defined between expressions, or even between constraints whenever
388    ///  it makes sense. Therefore if \c e and \c f are linear expressions and
389    ///  \c s and \c t are numbers, then the followings are valid expressions
390    ///  and thus they can be used directly e.g. in \ref addRow() whenever
391    ///  it makes sense.
[1908]392    ///\code
[1364]393    ///  e<=s
394    ///  e<=f
[1908]395    ///  e==f
[1364]396    ///  s<=e<=t
397    ///  e>=t
[1908]398    ///\endcode
[1364]399    ///\warning The validity of a constraint is checked only at run time, so
400    ///e.g. \ref addRow(<tt>x[1]\<=x[2]<=5</tt>) will compile, but will throw a
401    ///\ref LogicError exception.
[1272]402    class Constr
403    {
404    public:
405      typedef LpSolverBase::Expr Expr;
[1273]406      typedef Expr::Key Key;
407      typedef Expr::Value Value;
[1272]408     
[1273]409    protected:
410      Expr _expr;
411      Value _lb,_ub;
412    public:
413      ///\e
414      Constr() : _expr(), _lb(NaN), _ub(NaN) {}
415      ///\e
416      Constr(Value lb,const Expr &e,Value ub) :
417        _expr(e), _lb(lb), _ub(ub) {}
418      ///\e
419      Constr(const Expr &e,Value ub) :
420        _expr(e), _lb(NaN), _ub(ub) {}
421      ///\e
422      Constr(Value lb,const Expr &e) :
423        _expr(e), _lb(lb), _ub(NaN) {}
424      ///\e
[1272]425      Constr(const Expr &e) :
[1273]426        _expr(e), _lb(NaN), _ub(NaN) {}
427      ///\e
428      void clear()
429      {
430        _expr.clear();
431        _lb=_ub=NaN;
432      }
[1364]433
434      ///Reference to the linear expression
[1273]435      Expr &expr() { return _expr; }
[1364]436      ///Cont reference to the linear expression
[1273]437      const Expr &expr() const { return _expr; }
[1364]438      ///Reference to the lower bound.
439
440      ///\return
[1536]441      ///- \ref INF "INF": the constraint is lower unbounded.
442      ///- \ref NaN "NaN": lower bound has not been set.
[1364]443      ///- finite number: the lower bound
[1273]444      Value &lowerBound() { return _lb; }
[1364]445      ///The const version of \ref lowerBound()
[1273]446      const Value &lowerBound() const { return _lb; }
[1364]447      ///Reference to the upper bound.
448
449      ///\return
[1536]450      ///- \ref INF "INF": the constraint is upper unbounded.
451      ///- \ref NaN "NaN": upper bound has not been set.
[1364]452      ///- finite number: the upper bound
[1273]453      Value &upperBound() { return _ub; }
[1364]454      ///The const version of \ref upperBound()
[1273]455      const Value &upperBound() const { return _ub; }
[1364]456      ///Is the constraint lower bounded?
[1295]457      bool lowerBounded() const {
[2495]458        return isFinite(_lb);
[1295]459      }
[1364]460      ///Is the constraint upper bounded?
[1295]461      bool upperBounded() const {
[2495]462        return isFinite(_ub);
[1295]463      }
[2345]464
[1272]465    };
466   
[1445]467    ///Linear expression of rows
468   
469    ///This data structure represents a column of the matrix,
470    ///thas is it strores a linear expression of the dual variables
471    ///(\ref Row "Row"s).
472    ///
473    ///There are several ways to access and modify the contents of this
474    ///container.
475    ///- Its it fully compatible with \c std::map<Row,double>, so for expamle
476    ///if \c e is an DualExpr and \c v
477    ///and \c w are of type \ref Row, then you can
478    ///read and modify the coefficients like
479    ///these.
480    ///\code
481    ///e[v]=5;
482    ///e[v]+=12;
483    ///e.erase(v);
484    ///\endcode
485    ///or you can also iterate through its elements.
486    ///\code
487    ///double s=0;
488    ///for(LpSolverBase::DualExpr::iterator i=e.begin();i!=e.end();++i)
489    ///  s+=i->second;
490    ///\endcode
491    ///(This code computes the sum of all coefficients).
492    ///- Numbers (<tt>double</tt>'s)
493    ///and variables (\ref Row "Row"s) directly convert to an
[1908]494    ///\ref DualExpr and the usual linear operations are defined, so
[1445]495    ///\code
496    ///v+w
497    ///2*v-3.12*(v-w/2)
498    ///v*2.1+(3*v+(v*12+w)*3)/2
499    ///\endcode
500    ///are valid \ref DualExpr "DualExpr"essions.
501    ///The usual assignment operations are also defined.
502    ///\code
503    ///e=v+w;
504    ///e+=2*v-3.12*(v-w/2);
505    ///e*=3.4;
506    ///e/=5;
507    ///\endcode
508    ///
509    ///\sa Expr
510    ///
511    class DualExpr : public std::map<Row,Value>
512    {
513    public:
514      typedef LpSolverBase::Row Key;
515      typedef LpSolverBase::Value Value;
516     
517    protected:
518      typedef std::map<Row,Value> Base;
519     
520    public:
521      typedef True IsLinExpression;
522      ///\e
523      DualExpr() : Base() { }
524      ///\e
525      DualExpr(const Key &v) {
526        Base::insert(std::make_pair(v, 1));
527      }
528      ///\e
529      void set(const Key &v,const Value &c) {
530        Base::insert(std::make_pair(v, c));
531      }
532     
533      ///Removes the components with zero coefficient.
534      void simplify() {
535        for (Base::iterator i=Base::begin(); i!=Base::end();) {
536          Base::iterator j=i;
537          ++j;
538          if ((*i).second==0) Base::erase(i);
[2085]539          i=j;
[1445]540        }
541      }
542
[2312]543      void simplify() const {
544        const_cast<DualExpr*>(this)->simplify();
545      }
546
[1771]547      ///Removes the coefficients closer to zero than \c tolerance.
548      void simplify(double &tolerance) {
549        for (Base::iterator i=Base::begin(); i!=Base::end();) {
550          Base::iterator j=i;
551          ++j;
552          if (std::fabs((*i).second)<tolerance) Base::erase(i);
[2085]553          i=j;
[1771]554        }
555      }
556
[1445]557      ///Sets all coefficients to 0.
558      void clear() {
559        Base::clear();
560      }
561
562      ///\e
563      DualExpr &operator+=(const DualExpr &e) {
564        for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
565          (*this)[j->first]+=j->second;
566        return *this;
567      }
568      ///\e
569      DualExpr &operator-=(const DualExpr &e) {
570        for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
571          (*this)[j->first]-=j->second;
572        return *this;
573      }
574      ///\e
575      DualExpr &operator*=(const Value &c) {
576        for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
577          j->second*=c;
578        return *this;
579      }
580      ///\e
581      DualExpr &operator/=(const Value &c) {
582        for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
583          j->second/=c;
584        return *this;
585      }
586    };
587   
[1253]588
[2312]589  private:
590
[2364]591    template <typename _Expr>
592    class MappedOutputIterator {
[2312]593    public:
594
[2364]595      typedef std::insert_iterator<_Expr> Base;
596
597      typedef std::output_iterator_tag iterator_category;
598      typedef void difference_type;
599      typedef void value_type;
600      typedef void reference;
601      typedef void pointer;
602     
603      MappedOutputIterator(const Base& _base, const LpSolverBase& _lp)
604        : base(_base), lp(_lp) {}
605
606      MappedOutputIterator& operator*() {
607        return *this;
608      }
609
610      MappedOutputIterator& operator=(const std::pair<int, Value>& value) {
611        *base = std::make_pair(lp._item(value.first, typename _Expr::Key()),
612                               value.second);
613        return *this;
614      }
615
616      MappedOutputIterator& operator++() {
617        ++base;
618        return *this;
619      }
620
621      MappedOutputIterator operator++(int) {
622        MappedOutputIterator tmp(*this);
623        ++base;
624        return tmp;
625      }
626
627      bool operator==(const MappedOutputIterator& it) const {
628        return base == it.base;
629      }
630
631      bool operator!=(const MappedOutputIterator& it) const {
632        return base != it.base;
633      }
634
635    private:
636      Base base;
637      const LpSolverBase& lp;
638    };
639
640    template <typename Expr>
641    class MappedInputIterator {
642    public:
643
644      typedef typename Expr::const_iterator Base;
[2312]645
646      typedef typename Base::iterator_category iterator_category;
647      typedef typename Base::difference_type difference_type;
648      typedef const std::pair<int, Value> value_type;
649      typedef value_type reference;
650      class pointer {
651      public:
652        pointer(value_type& _value) : value(_value) {}
653        value_type* operator->() { return &value; }
654      private:
655        value_type value;
656      };
657
[2364]658      MappedInputIterator(const Base& _base, const LpSolverBase& _lp)
[2312]659        : base(_base), lp(_lp) {}
660
661      reference operator*() {
662        return std::make_pair(lp._lpId(base->first), base->second);
663      }
664
665      pointer operator->() {
666        return pointer(operator*());
667      }
668
[2364]669      MappedInputIterator& operator++() {
[2312]670        ++base;
671        return *this;
672      }
673
[2364]674      MappedInputIterator operator++(int) {
675        MappedInputIterator tmp(*this);
[2312]676        ++base;
677        return tmp;
678      }
679
[2364]680      bool operator==(const MappedInputIterator& it) const {
[2312]681        return base == it.base;
682      }
683
[2364]684      bool operator!=(const MappedInputIterator& it) const {
[2312]685        return base != it.base;
686      }
687
688    private:
689      Base base;
690      const LpSolverBase& lp;
691    };
692
[1253]693  protected:
[1246]694
[2312]695    /// STL compatible iterator for lp col
[2364]696    typedef MappedInputIterator<Expr> ConstRowIterator;
[2312]697    /// STL compatible iterator for lp row
[2364]698    typedef MappedInputIterator<DualExpr> ConstColIterator;
699
700    /// STL compatible iterator for lp col
701    typedef MappedOutputIterator<Expr> RowIterator;
702    /// STL compatible iterator for lp row
703    typedef MappedOutputIterator<DualExpr> ColIterator;
[2312]704
[1323]705    //Abstract virtual functions
[2605]706    virtual LpSolverBase* _newLp() = 0;
707    virtual LpSolverBase* _copyLp(){
708      LpSolverBase* newlp = _newLp();
[1436]709
[2605]710      std::map<Col, Col> ref;
711      for (LpSolverBase::ColIt it(*this); it != INVALID; ++it) {
712        Col ccol = newlp->addCol();
713        ref[it] = ccol;
714        newlp->colName(ccol, colName(it));
715        newlp->colLowerBound(ccol, colLowerBound(it));
716        newlp->colUpperBound(ccol, colUpperBound(it));
717      }
718
719      for (LpSolverBase::RowIt it(*this); it != INVALID; ++it) {
720        Expr e = row(it), ce;
721        for (Expr::iterator jt = e.begin(); jt != e.end(); ++jt) {
722          ce[ref[jt->first]] = jt->second;
723        }
724        ce += e.constComp();
725        Row r = newlp->addRow(ce);
726
727        double lower, upper;
728        getRowBounds(it, lower, upper);
729        newlp->rowBounds(r, lower, upper);
730      }
731
[1436]732      return newlp;
733    };
[1364]734
[1246]735    virtual int _addCol() = 0;
[2303]736    virtual int _addRow() = 0;
[2366]737
[1542]738    virtual void _eraseCol(int col) = 0;
739    virtual void _eraseRow(int row) = 0;
[2366]740
741    virtual void _getColName(int col, std::string & name) const = 0;
[1895]742    virtual void _setColName(int col, const std::string & name) = 0;
[2366]743    virtual int _colByName(const std::string& name) const = 0;
744
[2364]745    virtual void _setRowCoeffs(int i, ConstRowIterator b,
746                               ConstRowIterator e) = 0;
[2366]747    virtual void _getRowCoeffs(int i, RowIterator b) const = 0;
[2364]748    virtual void _setColCoeffs(int i, ConstColIterator b,
749                               ConstColIterator e) = 0;
[2366]750    virtual void _getColCoeffs(int i, ColIterator b) const = 0;
[1431]751    virtual void _setCoeff(int row, int col, Value value) = 0;
[2366]752    virtual Value _getCoeff(int row, int col) const = 0;
[1294]753    virtual void _setColLowerBound(int i, Value value) = 0;
[2366]754    virtual Value _getColLowerBound(int i) const = 0;
[1294]755    virtual void _setColUpperBound(int i, Value value) = 0;
[2366]756    virtual Value _getColUpperBound(int i) const = 0;
[1379]757    virtual void _setRowBounds(int i, Value lower, Value upper) = 0;
[2366]758    virtual void _getRowBounds(int i, Value &lower, Value &upper) const = 0;
[2328]759
[1294]760    virtual void _setObjCoeff(int i, Value obj_coef) = 0;
[2366]761    virtual Value _getObjCoeff(int i) const = 0;
[1377]762    virtual void _clearObj()=0;
[2312]763
[1303]764    virtual SolveExitStatus _solve() = 0;
[2366]765    virtual Value _getPrimal(int i) const = 0;
766    virtual Value _getDual(int i) const = 0;
767    virtual Value _getPrimalValue() const = 0;
768    virtual bool _isBasicCol(int i) const = 0;
769    virtual SolutionStatus _getPrimalStatus() const = 0;
770    virtual SolutionStatus _getDualStatus() const = 0;
771    virtual ProblemTypes _getProblemType() const = 0;
[1460]772
[1312]773    virtual void _setMax() = 0;
774    virtual void _setMin() = 0;
775   
[2324]776
[2366]777    virtual bool _isMax() const = 0;
[2324]778
[1323]779    //Own protected stuff
780   
781    //Constant component of the objective function
782    Value obj_const_comp;
[2312]783       
[1253]784  public:
785
[1323]786    ///\e
787    LpSolverBase() : obj_const_comp(0) {}
[1253]788
789    ///\e
790    virtual ~LpSolverBase() {}
791
[1364]792    ///Creates a new LP problem
[2605]793    LpSolverBase* newLp() {return _newLp();}
[1381]794    ///Makes a copy of the LP problem
[2605]795    LpSolverBase* copyLp() {return _copyLp();}
[1364]796   
[1612]797    ///\name Build up and modify the LP
[1263]798
799    ///@{
800
[1253]801    ///Add a new empty column (i.e a new variable) to the LP
[2363]802    Col addCol() { Col c; _addCol(); c.id = cols.addId(); return c;}
[1263]803
[1294]804    ///\brief Adds several new columns
805    ///(i.e a variables) at once
[1256]806    ///
[1273]807    ///This magic function takes a container as its argument
[1256]808    ///and fills its elements
809    ///with new columns (i.e. variables)
[1273]810    ///\param t can be
811    ///- a standard STL compatible iterable container with
812    ///\ref Col as its \c values_type
813    ///like
814    ///\code
815    ///std::vector<LpSolverBase::Col>
816    ///std::list<LpSolverBase::Col>
817    ///\endcode
818    ///- a standard STL compatible iterable container with
819    ///\ref Col as its \c mapped_type
820    ///like
821    ///\code
[1364]822    ///std::map<AnyType,LpSolverBase::Col>
[1273]823    ///\endcode
[2260]824    ///- an iterable lemon \ref concepts::WriteMap "write map" like
[1273]825    ///\code
826    ///ListGraph::NodeMap<LpSolverBase::Col>
827    ///ListGraph::EdgeMap<LpSolverBase::Col>
828    ///\endcode
[1256]829    ///\return The number of the created column.
830#ifdef DOXYGEN
831    template<class T>
832    int addColSet(T &t) { return 0;}
833#else
834    template<class T>
835    typename enable_if<typename T::value_type::LpSolverCol,int>::type
836    addColSet(T &t,dummy<0> = 0) {
837      int s=0;
838      for(typename T::iterator i=t.begin();i!=t.end();++i) {*i=addCol();s++;}
839      return s;
840    }
841    template<class T>
842    typename enable_if<typename T::value_type::second_type::LpSolverCol,
843                       int>::type
844    addColSet(T &t,dummy<1> = 1) {
845      int s=0;
846      for(typename T::iterator i=t.begin();i!=t.end();++i) {
847        i->second=addCol();
848        s++;
849      }
850      return s;
851    }
[1272]852    template<class T>
[1810]853    typename enable_if<typename T::MapIt::Value::LpSolverCol,
[1272]854                       int>::type
855    addColSet(T &t,dummy<2> = 2) {
856      int s=0;
[1810]857      for(typename T::MapIt i(t); i!=INVALID; ++i)
[1272]858        {
[1810]859          i.set(addCol());
[1272]860          s++;
861        }
862      return s;
863    }
[1256]864#endif
[1263]865
[1445]866    ///Set a column (i.e a dual constraint) of the LP
[1258]867
[1445]868    ///\param c is the column to be modified
869    ///\param e is a dual linear expression (see \ref DualExpr)
870    ///a better one.
[1899]871    void col(Col c,const DualExpr &e) {
[2312]872      e.simplify();
[2364]873      _setColCoeffs(_lpId(c), ConstColIterator(e.begin(), *this),
874                    ConstColIterator(e.end(), *this));
875    }
876
877    ///Get a column (i.e a dual constraint) of the LP
878
879    ///\param r is the column to get
880    ///\return the dual expression associated to the column
[2366]881    DualExpr col(Col c) const {
[2364]882      DualExpr e;
883      _getColCoeffs(_lpId(c), ColIterator(std::inserter(e, e.end()), *this));
884      return e;
[1445]885    }
886
887    ///Add a new column to the LP
888
889    ///\param e is a dual linear expression (see \ref DualExpr)
890    ///\param obj is the corresponding component of the objective
891    ///function. It is 0 by default.
892    ///\return The created column.
[2386]893    Col addCol(const DualExpr &e, Value o = 0) {
[1445]894      Col c=addCol();
[1899]895      col(c,e);
[2386]896      objCoeff(c,o);
[1445]897      return c;
898    }
899
900    ///Add a new empty row (i.e a new constraint) to the LP
901
902    ///This function adds a new empty row (i.e a new constraint) to the LP.
[1258]903    ///\return The created row
[2363]904    Row addRow() { Row r; _addRow(); r.id = rows.addId(); return r;}
[1253]905
[1542]906    ///\brief Add several new rows
907    ///(i.e a constraints) at once
[1445]908    ///
909    ///This magic function takes a container as its argument
910    ///and fills its elements
911    ///with new row (i.e. variables)
912    ///\param t can be
913    ///- a standard STL compatible iterable container with
914    ///\ref Row as its \c values_type
915    ///like
916    ///\code
917    ///std::vector<LpSolverBase::Row>
918    ///std::list<LpSolverBase::Row>
919    ///\endcode
920    ///- a standard STL compatible iterable container with
921    ///\ref Row as its \c mapped_type
922    ///like
923    ///\code
924    ///std::map<AnyType,LpSolverBase::Row>
925    ///\endcode
[2260]926    ///- an iterable lemon \ref concepts::WriteMap "write map" like
[1445]927    ///\code
928    ///ListGraph::NodeMap<LpSolverBase::Row>
929    ///ListGraph::EdgeMap<LpSolverBase::Row>
930    ///\endcode
931    ///\return The number of rows created.
932#ifdef DOXYGEN
933    template<class T>
934    int addRowSet(T &t) { return 0;}
935#else
936    template<class T>
937    typename enable_if<typename T::value_type::LpSolverRow,int>::type
938    addRowSet(T &t,dummy<0> = 0) {
939      int s=0;
940      for(typename T::iterator i=t.begin();i!=t.end();++i) {*i=addRow();s++;}
941      return s;
942    }
943    template<class T>
944    typename enable_if<typename T::value_type::second_type::LpSolverRow,
945                       int>::type
946    addRowSet(T &t,dummy<1> = 1) {
947      int s=0;
948      for(typename T::iterator i=t.begin();i!=t.end();++i) {
949        i->second=addRow();
950        s++;
951      }
952      return s;
953    }
954    template<class T>
[1810]955    typename enable_if<typename T::MapIt::Value::LpSolverRow,
[1445]956                       int>::type
957    addRowSet(T &t,dummy<2> = 2) {
958      int s=0;
[1810]959      for(typename T::MapIt i(t); i!=INVALID; ++i)
[1445]960        {
[1810]961          i.set(addRow());
[1445]962          s++;
963        }
964      return s;
965    }
966#endif
967
968    ///Set a row (i.e a constraint) of the LP
[1253]969
[1258]970    ///\param r is the row to be modified
[1259]971    ///\param l is lower bound (-\ref INF means no bound)
[1258]972    ///\param e is a linear expression (see \ref Expr)
[1259]973    ///\param u is the upper bound (\ref INF means no bound)
[2369]974    ///\bug This is a temporary function. The interface will change to
[1253]975    ///a better one.
[1328]976    ///\todo Option to control whether a constraint with a single variable is
977    ///added or not.
[2366]978    void row(Row r, Value l, const Expr &e, Value u) {
[2312]979      e.simplify();
[2364]980      _setRowCoeffs(_lpId(r), ConstRowIterator(e.begin(), *this),
981                    ConstRowIterator(e.end(), *this));
982      _setRowBounds(_lpId(r),l-e.constComp(),u-e.constComp());
[1258]983    }
984
[1445]985    ///Set a row (i.e a constraint) of the LP
[1264]986
987    ///\param r is the row to be modified
988    ///\param c is a linear expression (see \ref Constr)
[1895]989    void row(Row r, const Constr &c) {
[2312]990      row(r, c.lowerBounded()?c.lowerBound():-INF,
991          c.expr(), c.upperBounded()?c.upperBound():INF);
[1264]992    }
993
[2364]994   
995    ///Get a row (i.e a constraint) of the LP
996
997    ///\param r is the row to get
998    ///\return the expression associated to the row
[2366]999    Expr row(Row r) const {
[2364]1000      Expr e;
1001      _getRowCoeffs(_lpId(r), RowIterator(std::inserter(e, e.end()), *this));
1002      return e;
1003    }
1004
[1445]1005    ///Add a new row (i.e a new constraint) to the LP
[1258]1006
[1259]1007    ///\param l is the lower bound (-\ref INF means no bound)
[1258]1008    ///\param e is a linear expression (see \ref Expr)
[1259]1009    ///\param u is the upper bound (\ref INF means no bound)
[1258]1010    ///\return The created row.
[2369]1011    ///\bug This is a temporary function. The interface will change to
[1258]1012    ///a better one.
1013    Row addRow(Value l,const Expr &e, Value u) {
1014      Row r=addRow();
[1895]1015      row(r,l,e,u);
[1253]1016      return r;
1017    }
1018
[1445]1019    ///Add a new row (i.e a new constraint) to the LP
[1264]1020
1021    ///\param c is a linear expression (see \ref Constr)
1022    ///\return The created row.
1023    Row addRow(const Constr &c) {
1024      Row r=addRow();
[1895]1025      row(r,c);
[1264]1026      return r;
1027    }
[1542]1028    ///Erase a coloumn (i.e a variable) from the LP
1029
1030    ///\param c is the coloumn to be deleted
1031    ///\todo Please check this
1032    void eraseCol(Col c) {
[2312]1033      _eraseCol(_lpId(c));
[2363]1034      cols.eraseId(c.id);
[1542]1035    }
1036    ///Erase a  row (i.e a constraint) from the LP
1037
1038    ///\param r is the row to be deleted
1039    ///\todo Please check this
1040    void eraseRow(Row r) {
[2312]1041      _eraseRow(_lpId(r));
[2363]1042      rows.eraseId(r.id);
[1542]1043    }
[1264]1044
[1895]1045    /// Get the name of a column
1046   
1047    ///\param c is the coresponding coloumn
1048    ///\return The name of the colunm
[2366]1049    std::string colName(Col c) const {
[1895]1050      std::string name;
[2312]1051      _getColName(_lpId(c), name);
[1895]1052      return name;
1053    }
1054   
1055    /// Set the name of a column
1056   
1057    ///\param c is the coresponding coloumn
1058    ///\param name The name to be given
[2366]1059    void colName(Col c, const std::string& name) {
[2312]1060      _setColName(_lpId(c), name);
[1895]1061    }
[2368]1062
1063    /// Get the column by its name
1064   
1065    ///\param name The name of the column
1066    ///\return the proper column or \c INVALID
1067    Col colByName(const std::string& name) const {
1068      int k = _colByName(name);
1069      return k != -1 ? Col(cols.fixId(k)) : Col(INVALID);
1070    }
[1895]1071   
1072    /// Set an element of the coefficient matrix of the LP
[1436]1073
1074    ///\param r is the row of the element to be modified
1075    ///\param c is the coloumn of the element to be modified
1076    ///\param val is the new value of the coefficient
[1895]1077
[2366]1078    void coeff(Row r, Col c, Value val) {
[2312]1079      _setCoeff(_lpId(r),_lpId(c), val);
[1436]1080    }
1081
[2324]1082    /// Get an element of the coefficient matrix of the LP
1083
1084    ///\param r is the row of the element in question
1085    ///\param c is the coloumn of the element in question
1086    ///\return the corresponding coefficient
1087
[2366]1088    Value coeff(Row r, Col c) const {
[2324]1089      return _getCoeff(_lpId(r),_lpId(c));
1090    }
1091
[1253]1092    /// Set the lower bound of a column (i.e a variable)
1093
[1895]1094    /// The lower bound of a variable (column) has to be given by an
[1253]1095    /// extended number of type Value, i.e. a finite number of type
[1259]1096    /// Value or -\ref INF.
[1293]1097    void colLowerBound(Col c, Value value) {
[2312]1098      _setColLowerBound(_lpId(c),value);
[1253]1099    }
[2328]1100
1101    /// Get the lower bound of a column (i.e a variable)
1102
1103    /// This function returns the lower bound for column (variable) \t c
1104    /// (this might be -\ref INF as well). 
1105    ///\return The lower bound for coloumn \t c
[2366]1106    Value colLowerBound(Col c) const {
[2328]1107      return _getColLowerBound(_lpId(c));
1108    }
[1895]1109   
1110    ///\brief Set the lower bound of  several columns
1111    ///(i.e a variables) at once
1112    ///
1113    ///This magic function takes a container as its argument
1114    ///and applies the function on all of its elements.
1115    /// The lower bound of a variable (column) has to be given by an
1116    /// extended number of type Value, i.e. a finite number of type
1117    /// Value or -\ref INF.
1118#ifdef DOXYGEN
1119    template<class T>
1120    void colLowerBound(T &t, Value value) { return 0;}
1121#else
1122    template<class T>
1123    typename enable_if<typename T::value_type::LpSolverCol,void>::type
1124    colLowerBound(T &t, Value value,dummy<0> = 0) {
1125      for(typename T::iterator i=t.begin();i!=t.end();++i) {
1126        colLowerBound(*i, value);
1127      }
1128    }
1129    template<class T>
1130    typename enable_if<typename T::value_type::second_type::LpSolverCol,
1131                       void>::type
1132    colLowerBound(T &t, Value value,dummy<1> = 1) {
1133      for(typename T::iterator i=t.begin();i!=t.end();++i) {
1134        colLowerBound(i->second, value);
1135      }
1136    }
1137    template<class T>
1138    typename enable_if<typename T::MapIt::Value::LpSolverCol,
1139                       void>::type
1140    colLowerBound(T &t, Value value,dummy<2> = 2) {
1141      for(typename T::MapIt i(t); i!=INVALID; ++i){
1142        colLowerBound(*i, value);
1143      }
1144    }
1145#endif
1146   
[1253]1147    /// Set the upper bound of a column (i.e a variable)
1148
[1293]1149    /// The upper bound of a variable (column) has to be given by an
[1253]1150    /// extended number of type Value, i.e. a finite number of type
[1259]1151    /// Value or \ref INF.
[1293]1152    void colUpperBound(Col c, Value value) {
[2312]1153      _setColUpperBound(_lpId(c),value);
[1253]1154    };
[1895]1155
[2328]1156    /// Get the upper bound of a column (i.e a variable)
1157
1158    /// This function returns the upper bound for column (variable) \t c
1159    /// (this might be \ref INF as well). 
1160    ///\return The upper bound for coloumn \t c
[2366]1161    Value colUpperBound(Col c) const {
[2328]1162      return _getColUpperBound(_lpId(c));
1163    }
1164
1165    ///\brief Set the upper bound of  several columns
[1895]1166    ///(i.e a variables) at once
1167    ///
1168    ///This magic function takes a container as its argument
1169    ///and applies the function on all of its elements.
1170    /// The upper bound of a variable (column) has to be given by an
1171    /// extended number of type Value, i.e. a finite number of type
1172    /// Value or \ref INF.
1173#ifdef DOXYGEN
1174    template<class T>
1175    void colUpperBound(T &t, Value value) { return 0;}
1176#else
1177    template<class T>
1178    typename enable_if<typename T::value_type::LpSolverCol,void>::type
1179    colUpperBound(T &t, Value value,dummy<0> = 0) {
1180      for(typename T::iterator i=t.begin();i!=t.end();++i) {
1181        colUpperBound(*i, value);
1182      }
1183    }
1184    template<class T>
1185    typename enable_if<typename T::value_type::second_type::LpSolverCol,
1186                       void>::type
1187    colUpperBound(T &t, Value value,dummy<1> = 1) {
1188      for(typename T::iterator i=t.begin();i!=t.end();++i) {
1189        colUpperBound(i->second, value);
1190      }
1191    }
1192    template<class T>
1193    typename enable_if<typename T::MapIt::Value::LpSolverCol,
1194                       void>::type
1195    colUpperBound(T &t, Value value,dummy<2> = 2) {
1196      for(typename T::MapIt i(t); i!=INVALID; ++i){
1197        colUpperBound(*i, value);
1198      }
1199    }
1200#endif
1201
[1293]1202    /// Set the lower and the upper bounds of a column (i.e a variable)
1203
1204    /// The lower and the upper bounds of
1205    /// a variable (column) have to be given by an
1206    /// extended number of type Value, i.e. a finite number of type
1207    /// Value, -\ref INF or \ref INF.
1208    void colBounds(Col c, Value lower, Value upper) {
[2312]1209      _setColLowerBound(_lpId(c),lower);
1210      _setColUpperBound(_lpId(c),upper);
[1293]1211    }
1212   
[1895]1213    ///\brief Set the lower and the upper bound of several columns
1214    ///(i.e a variables) at once
1215    ///
1216    ///This magic function takes a container as its argument
1217    ///and applies the function on all of its elements.
1218    /// The lower and the upper bounds of
1219    /// a variable (column) have to be given by an
1220    /// extended number of type Value, i.e. a finite number of type
1221    /// Value, -\ref INF or \ref INF.
1222#ifdef DOXYGEN
1223    template<class T>
1224    void colBounds(T &t, Value lower, Value upper) { return 0;}
1225#else
1226    template<class T>
1227    typename enable_if<typename T::value_type::LpSolverCol,void>::type
1228    colBounds(T &t, Value lower, Value upper,dummy<0> = 0) {
1229      for(typename T::iterator i=t.begin();i!=t.end();++i) {
1230        colBounds(*i, lower, upper);
1231      }
1232    }
1233    template<class T>
1234    typename enable_if<typename T::value_type::second_type::LpSolverCol,
1235                       void>::type
1236    colBounds(T &t, Value lower, Value upper,dummy<1> = 1) {
1237      for(typename T::iterator i=t.begin();i!=t.end();++i) {
1238        colBounds(i->second, lower, upper);
1239      }
1240    }
1241    template<class T>
1242    typename enable_if<typename T::MapIt::Value::LpSolverCol,
1243                       void>::type
1244    colBounds(T &t, Value lower, Value upper,dummy<2> = 2) {
1245      for(typename T::MapIt i(t); i!=INVALID; ++i){
1246        colBounds(*i, lower, upper);
1247      }
1248    }
1249#endif
1250   
[1405]1251
1252    /// Set the lower and the upper bounds of a row (i.e a constraint)
[1293]1253
[2363]1254    /// The lower and the upper bound of a constraint (row) have to be
1255    /// given by an extended number of type Value, i.e. a finite
1256    /// number of type Value, -\ref INF or \ref INF. There is no
1257    /// separate function for the lower and the upper bound because
1258    /// that would have been hard to implement for CPLEX.
[1293]1259    void rowBounds(Row c, Value lower, Value upper) {
[2312]1260      _setRowBounds(_lpId(c),lower, upper);
[1293]1261    }
1262   
[2328]1263    /// Get the lower and the upper bounds of a row (i.e a constraint)
1264
1265    /// The lower and the upper bound of
1266    /// a constraint (row) are 
1267    /// extended numbers of type Value, i.e.  finite numbers of type
1268    /// Value, -\ref INF or \ref INF.
1269    /// \todo There is no separate function for the
1270    /// lower and the upper bound because we had problems with the
1271    /// implementation of the setting functions for CPLEX: 
1272    /// check out whether this can be done for these functions.
[2366]1273    void getRowBounds(Row c, Value &lower, Value &upper) const {
[2328]1274      _getRowBounds(_lpId(c),lower, upper);
1275    }
1276
[1253]1277    ///Set an element of the objective function
[2312]1278    void objCoeff(Col c, Value v) {_setObjCoeff(_lpId(c),v); };
[2324]1279
1280    ///Get an element of the objective function
[2366]1281    Value objCoeff(Col c) const { return _getObjCoeff(_lpId(c)); };
[2324]1282
[1253]1283    ///Set the objective function
[2324]1284
[1253]1285    ///\param e is a linear expression of type \ref Expr.
[2369]1286    void obj(Expr e) {
[1377]1287      _clearObj();
[1253]1288      for (Expr::iterator i=e.begin(); i!=e.end(); ++i)
[1293]1289        objCoeff((*i).first,(*i).second);
[1323]1290      obj_const_comp=e.constComp();
[1253]1291    }
[1263]1292
[2364]1293    ///Get the objective function
1294
1295    ///\return the objective function as a linear expression of type \ref Expr.
[2366]1296    Expr obj() const {
[2364]1297      Expr e;
1298      for (ColIt it(*this); it != INVALID; ++it) {
1299        double c = objCoeff(it);
1300        if (c != 0.0) {
1301          e.insert(std::make_pair(it, c));
1302        }
1303      }
1304      return e;
1305    }
1306   
1307
[1312]1308    ///Maximize
1309    void max() { _setMax(); }
1310    ///Minimize
1311    void min() { _setMin(); }
1312
[2324]1313    ///Query function: is this a maximization problem?
[2369]1314    bool isMax() const {return _isMax(); }
[2324]1315
1316    ///Query function: is this a minimization problem?
[2369]1317    bool isMin() const {return !isMax(); }
[1312]1318   
[1263]1319    ///@}
1320
1321
[1294]1322    ///\name Solve the LP
[1263]1323
1324    ///@{
1325
[1458]1326    ///\e Solve the LP problem at hand
1327    ///
[2026]1328    ///\return The result of the optimization procedure. Possible
1329    ///values and their meanings can be found in the documentation of
1330    ///\ref SolveExitStatus.
[1458]1331    ///
1332    ///\todo Which method is used to solve the problem
[1303]1333    SolveExitStatus solve() { return _solve(); }
[1263]1334   
1335    ///@}
1336   
[1294]1337    ///\name Obtain the solution
[1263]1338
1339    ///@{
1340
[1460]1341    /// The status of the primal problem (the original LP problem)
[2366]1342    SolutionStatus primalStatus() const {
[1312]1343      return _getPrimalStatus();
[1294]1344    }
1345
[1460]1346    /// The status of the dual (of the original LP) problem
[2366]1347    SolutionStatus dualStatus() const {
[1460]1348      return _getDualStatus();
1349    }
1350
1351    ///The type of the original LP problem
[2366]1352    ProblemTypes problemType() const {
[1460]1353      return _getProblemType();
1354    }
1355
[1294]1356    ///\e
[2366]1357    Value primal(Col c) const { return _getPrimal(_lpId(c)); }
[2513]1358    ///\e
1359    Value primal(const Expr& e) const {
1360      double res = e.constComp();
1361      for (std::map<Col, double>::const_iterator it = e.begin();
1362           it != e.end(); ++it) {
1363        res += _getPrimal(_lpId(it->first)) * it->second;
1364      }
1365      return res;
1366    }
[1263]1367
[1312]1368    ///\e
[2366]1369    Value dual(Row r) const { return _getDual(_lpId(r)); }
[2513]1370    ///\e
1371    Value dual(const DualExpr& e) const {
1372      double res = 0.0;
1373      for (std::map<Row, double>::const_iterator it = e.begin();
1374           it != e.end(); ++it) {
1375        res += _getPrimal(_lpId(it->first)) * it->second;
1376      }
1377      return res;
1378    }
[1787]1379
1380    ///\e
[2366]1381    bool isBasicCol(Col c) const { return _isBasicCol(_lpId(c)); }
[1840]1382
1383    ///\e
[1312]1384
1385    ///\return
1386    ///- \ref INF or -\ref INF means either infeasibility or unboundedness
1387    /// of the primal problem, depending on whether we minimize or maximize.
[1364]1388    ///- \ref NaN if no primal solution is found.
[1312]1389    ///- The (finite) objective value if an optimal solution is found.
[2366]1390    Value primalValue() const { return _getPrimalValue()+obj_const_comp;}
[1263]1391    ///@}
[1253]1392   
[1248]1393  }; 
[1246]1394
[2144]1395
[2370]1396  /// \ingroup lp_group
1397  ///
1398  /// \brief Common base class for MIP solvers
1399  /// \todo Much more docs
[2144]1400  class MipSolverBase : virtual public LpSolverBase{
1401  public:
1402
[2148]1403    ///Possible variable (coloumn) types (e.g. real, integer, binary etc.)
1404    enum ColTypes {
1405      ///Continuous variable
1406      REAL = 0,
1407      ///Integer variable
[2218]1408
1409      ///Unfortunately, cplex 7.5 somewhere writes something like
1410      ///#define INTEGER 'I'
[2267]1411      INT = 1
[2148]1412      ///\todo No support for other types yet.
1413    };
1414
1415    ///Sets the type of the given coloumn to the given type
[2144]1416    ///
[2148]1417    ///Sets the type of the given coloumn to the given type.
1418    void colType(Col c, ColTypes col_type) {
[2312]1419      _colType(_lpId(c),col_type);
[2144]1420    }
1421
1422    ///Gives back the type of the column.
1423    ///
1424    ///Gives back the type of the column.
[2366]1425    ColTypes colType(Col c) const {
[2312]1426      return _colType(_lpId(c));
[2148]1427    }
1428
1429    ///Sets the type of the given Col to integer or remove that property.
1430    ///
1431    ///Sets the type of the given Col to integer or remove that property.
1432    void integer(Col c, bool enable) {
1433      if (enable)
[2267]1434        colType(c,INT);
[2148]1435      else
1436        colType(c,REAL);
1437    }
1438
1439    ///Gives back whether the type of the column is integer or not.
1440    ///
1441    ///Gives back the type of the column.
[2144]1442    ///\return true if the column has integer type and false if not.
[2366]1443    bool integer(Col c) const {
[2267]1444      return (colType(c)==INT);
[2144]1445    }
1446
[2185]1447    /// The status of the MIP problem
[2366]1448    SolutionStatus mipStatus() const {
[2185]1449      return _getMipStatus();
1450    }
1451
[2144]1452  protected:
1453
[2366]1454    virtual ColTypes _colType(int col) const = 0;
[2148]1455    virtual void _colType(int col, ColTypes col_type) = 0;
[2366]1456    virtual SolutionStatus _getMipStatus() const = 0;
[2148]1457
[2144]1458  };
[1272]1459 
1460  ///\relates LpSolverBase::Expr
1461  ///
1462  inline LpSolverBase::Expr operator+(const LpSolverBase::Expr &a,
1463                                      const LpSolverBase::Expr &b)
1464  {
1465    LpSolverBase::Expr tmp(a);
[1766]1466    tmp+=b;
[1272]1467    return tmp;
1468  }
1469  ///\e
1470 
1471  ///\relates LpSolverBase::Expr
1472  ///
1473  inline LpSolverBase::Expr operator-(const LpSolverBase::Expr &a,
1474                                      const LpSolverBase::Expr &b)
1475  {
1476    LpSolverBase::Expr tmp(a);
[1766]1477    tmp-=b;
[1272]1478    return tmp;
1479  }
1480  ///\e
1481 
1482  ///\relates LpSolverBase::Expr
1483  ///
1484  inline LpSolverBase::Expr operator*(const LpSolverBase::Expr &a,
[1273]1485                                      const LpSolverBase::Value &b)
[1272]1486  {
1487    LpSolverBase::Expr tmp(a);
[1766]1488    tmp*=b;
[1272]1489    return tmp;
1490  }
1491 
1492  ///\e
1493 
1494  ///\relates LpSolverBase::Expr
1495  ///
[1273]1496  inline LpSolverBase::Expr operator*(const LpSolverBase::Value &a,
[1272]1497                                      const LpSolverBase::Expr &b)
1498  {
1499    LpSolverBase::Expr tmp(b);
[1766]1500    tmp*=a;
[1272]1501    return tmp;
1502  }
1503  ///\e
1504 
1505  ///\relates LpSolverBase::Expr
1506  ///
1507  inline LpSolverBase::Expr operator/(const LpSolverBase::Expr &a,
[1273]1508                                      const LpSolverBase::Value &b)
[1272]1509  {
1510    LpSolverBase::Expr tmp(a);
[1766]1511    tmp/=b;
[1272]1512    return tmp;
1513  }
1514 
1515  ///\e
1516 
1517  ///\relates LpSolverBase::Constr
1518  ///
1519  inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
1520                                         const LpSolverBase::Expr &f)
1521  {
1522    return LpSolverBase::Constr(-LpSolverBase::INF,e-f,0);
1523  }
1524
1525  ///\e
1526 
1527  ///\relates LpSolverBase::Constr
1528  ///
[1273]1529  inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &e,
[1272]1530                                         const LpSolverBase::Expr &f)
1531  {
1532    return LpSolverBase::Constr(e,f);
1533  }
1534
1535  ///\e
1536 
1537  ///\relates LpSolverBase::Constr
1538  ///
1539  inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
[1273]1540                                         const LpSolverBase::Value &f)
[1272]1541  {
[2609]1542    return LpSolverBase::Constr(-LpSolverBase::INF,e,f);
[1272]1543  }
1544
1545  ///\e
1546 
1547  ///\relates LpSolverBase::Constr
1548  ///
1549  inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
1550                                         const LpSolverBase::Expr &f)
1551  {
1552    return LpSolverBase::Constr(-LpSolverBase::INF,f-e,0);
1553  }
1554
1555
1556  ///\e
1557 
1558  ///\relates LpSolverBase::Constr
1559  ///
[1273]1560  inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &e,
[1272]1561                                         const LpSolverBase::Expr &f)
1562  {
1563    return LpSolverBase::Constr(f,e);
1564  }
1565
1566
1567  ///\e
1568 
1569  ///\relates LpSolverBase::Constr
1570  ///
1571  inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
[1273]1572                                         const LpSolverBase::Value &f)
[1272]1573  {
[2609]1574    return LpSolverBase::Constr(f,e,LpSolverBase::INF);
[1272]1575  }
1576
1577  ///\e
[2345]1578
1579  ///\relates LpSolverBase::Constr
1580  ///
1581  inline LpSolverBase::Constr operator==(const LpSolverBase::Expr &e,
1582                                         const LpSolverBase::Value &f)
1583  {
1584    return LpSolverBase::Constr(f,e,f);
1585  }
1586
1587  ///\e
[1272]1588 
1589  ///\relates LpSolverBase::Constr
1590  ///
1591  inline LpSolverBase::Constr operator==(const LpSolverBase::Expr &e,
1592                                         const LpSolverBase::Expr &f)
1593  {
1594    return LpSolverBase::Constr(0,e-f,0);
1595  }
1596
1597  ///\e
1598 
1599  ///\relates LpSolverBase::Constr
1600  ///
[1273]1601  inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &n,
[1272]1602                                         const LpSolverBase::Constr&c)
1603  {
1604    LpSolverBase::Constr tmp(c);
[1273]1605    ///\todo Create an own exception type.
[2026]1606    if(!LpSolverBase::isNaN(tmp.lowerBound())) throw LogicError();
[1273]1607    else tmp.lowerBound()=n;
[1272]1608    return tmp;
1609  }
1610  ///\e
1611 
1612  ///\relates LpSolverBase::Constr
1613  ///
1614  inline LpSolverBase::Constr operator<=(const LpSolverBase::Constr& c,
[1273]1615                                         const LpSolverBase::Value &n)
[1272]1616  {
1617    LpSolverBase::Constr tmp(c);
[1273]1618    ///\todo Create an own exception type.
[2026]1619    if(!LpSolverBase::isNaN(tmp.upperBound())) throw LogicError();
[1273]1620    else tmp.upperBound()=n;
[1272]1621    return tmp;
1622  }
1623
1624  ///\e
1625 
1626  ///\relates LpSolverBase::Constr
1627  ///
[1273]1628  inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &n,
[1272]1629                                         const LpSolverBase::Constr&c)
1630  {
1631    LpSolverBase::Constr tmp(c);
[1273]1632    ///\todo Create an own exception type.
[2026]1633    if(!LpSolverBase::isNaN(tmp.upperBound())) throw LogicError();
[1273]1634    else tmp.upperBound()=n;
[1272]1635    return tmp;
1636  }
1637  ///\e
1638 
1639  ///\relates LpSolverBase::Constr
1640  ///
1641  inline LpSolverBase::Constr operator>=(const LpSolverBase::Constr& c,
[1273]1642                                         const LpSolverBase::Value &n)
[1272]1643  {
1644    LpSolverBase::Constr tmp(c);
[1273]1645    ///\todo Create an own exception type.
[2026]1646    if(!LpSolverBase::isNaN(tmp.lowerBound())) throw LogicError();
[1273]1647    else tmp.lowerBound()=n;
[1272]1648    return tmp;
1649  }
1650
[1445]1651  ///\e
1652 
1653  ///\relates LpSolverBase::DualExpr
1654  ///
1655  inline LpSolverBase::DualExpr operator+(const LpSolverBase::DualExpr &a,
[2312]1656                                          const LpSolverBase::DualExpr &b)
[1445]1657  {
1658    LpSolverBase::DualExpr tmp(a);
[1766]1659    tmp+=b;
[1445]1660    return tmp;
1661  }
1662  ///\e
1663 
1664  ///\relates LpSolverBase::DualExpr
1665  ///
1666  inline LpSolverBase::DualExpr operator-(const LpSolverBase::DualExpr &a,
[2312]1667                                          const LpSolverBase::DualExpr &b)
[1445]1668  {
1669    LpSolverBase::DualExpr tmp(a);
[1766]1670    tmp-=b;
[1445]1671    return tmp;
1672  }
1673  ///\e
1674 
1675  ///\relates LpSolverBase::DualExpr
1676  ///
1677  inline LpSolverBase::DualExpr operator*(const LpSolverBase::DualExpr &a,
[2312]1678                                          const LpSolverBase::Value &b)
[1445]1679  {
1680    LpSolverBase::DualExpr tmp(a);
[1766]1681    tmp*=b;
[1445]1682    return tmp;
1683  }
1684 
1685  ///\e
1686 
1687  ///\relates LpSolverBase::DualExpr
1688  ///
1689  inline LpSolverBase::DualExpr operator*(const LpSolverBase::Value &a,
[2312]1690                                          const LpSolverBase::DualExpr &b)
[1445]1691  {
1692    LpSolverBase::DualExpr tmp(b);
[1766]1693    tmp*=a;
[1445]1694    return tmp;
1695  }
1696  ///\e
1697 
1698  ///\relates LpSolverBase::DualExpr
1699  ///
1700  inline LpSolverBase::DualExpr operator/(const LpSolverBase::DualExpr &a,
[2312]1701                                          const LpSolverBase::Value &b)
[1445]1702  {
1703    LpSolverBase::DualExpr tmp(a);
[1766]1704    tmp/=b;
[1445]1705    return tmp;
1706  }
1707 
[1272]1708
[1246]1709} //namespace lemon
1710
1711#endif //LEMON_LP_BASE_H
Note: See TracBrowser for help on using the repository browser.