src/work/athos/lp/lp_base.h
author alpar
Mon, 04 Apr 2005 08:03:43 +0000
changeset 1295 02a403c305b9
parent 1294 2dec219d9ca2
child 1303 9bcc455da4f5
permissions -rw-r--r--
- Modifications to compile with *both* gcc-3.3 and gcc-3.4
- Adjust further SolutionType
athos@1247
     1
/* -*- C++ -*-
alpar@1253
     2
 * src/lemon/lp_base.h - Part of LEMON, a generic C++ optimization library
athos@1247
     3
 *
athos@1247
     4
 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
athos@1247
     5
 * (Egervary Combinatorial Optimization Research Group, EGRES).
athos@1247
     6
 *
athos@1247
     7
 * Permission to use, modify and distribute this software is granted
athos@1247
     8
 * provided that this copyright notice appears in all copies. For
athos@1247
     9
 * precise terms see the accompanying LICENSE file.
athos@1247
    10
 *
athos@1247
    11
 * This software is provided "AS IS" with no warranty of any kind,
athos@1247
    12
 * express or implied, and with no claim as to its suitability for any
athos@1247
    13
 * purpose.
athos@1247
    14
 *
athos@1247
    15
 */
athos@1247
    16
athos@1246
    17
#ifndef LEMON_LP_BASE_H
athos@1246
    18
#define LEMON_LP_BASE_H
athos@1246
    19
alpar@1253
    20
#include<vector>
alpar@1272
    21
#include<map>
alpar@1256
    22
#include<limits>
alpar@1273
    23
#include<math.h>
alpar@1253
    24
alpar@1256
    25
#include<lemon/utility.h>
alpar@1253
    26
#include<lemon/error.h>
alpar@1256
    27
#include<lemon/invalid.h>
alpar@1253
    28
alpar@1272
    29
//#include"lin_expr.h"
alpar@1272
    30
athos@1246
    31
///\file
athos@1246
    32
///\brief The interface of the LP solver interface.
athos@1246
    33
namespace lemon {
alpar@1253
    34
  
alpar@1253
    35
  ///Internal data structure to convert floating id's to fix one's
alpar@1253
    36
    
alpar@1279
    37
  ///\todo This might be implemented to be also usable in other places.
alpar@1253
    38
  class _FixId 
alpar@1253
    39
  {
alpar@1253
    40
    std::vector<int> index;
alpar@1253
    41
    std::vector<int> cross;
alpar@1253
    42
    int first_free;
alpar@1253
    43
  public:
alpar@1253
    44
    _FixId() : first_free(-1) {};
alpar@1253
    45
    ///Convert a floating id to a fix one
alpar@1253
    46
alpar@1253
    47
    ///\param n is a floating id
alpar@1253
    48
    ///\return the corresponding fix id
alpar@1253
    49
    int fixId(int n) {return cross[n];}
alpar@1253
    50
    ///Convert a fix id to a floating one
alpar@1253
    51
alpar@1253
    52
    ///\param n is a fix id
alpar@1253
    53
    ///\return the corresponding floating id
alpar@1253
    54
    int floatingId(int n) { return index[n];}
alpar@1253
    55
    ///Add a new floating id.
alpar@1253
    56
alpar@1253
    57
    ///\param n is a floating id
alpar@1253
    58
    ///\return the fix id of the new value
alpar@1253
    59
    ///\todo Multiple additions should also be handled.
alpar@1253
    60
    int insert(int n)
alpar@1253
    61
    {
alpar@1253
    62
      if(n>=int(cross.size())) {
alpar@1253
    63
	cross.resize(n+1);
alpar@1253
    64
	if(first_free==-1) {
alpar@1253
    65
	  cross[n]=index.size();
alpar@1253
    66
	  index.push_back(n);
alpar@1253
    67
	}
alpar@1253
    68
	else {
alpar@1253
    69
	  cross[n]=first_free;
alpar@1253
    70
	  int next=index[first_free];
alpar@1253
    71
	  index[first_free]=n;
alpar@1253
    72
	  first_free=next;
alpar@1253
    73
	}
alpar@1256
    74
	return cross[n];
alpar@1253
    75
      }
alpar@1273
    76
      ///\todo Create an own exception type.
alpar@1253
    77
      else throw LogicError(); //floatingId-s must form a continuous range;
alpar@1253
    78
    }
alpar@1253
    79
    ///Remove a fix id.
alpar@1253
    80
alpar@1253
    81
    ///\param n is a fix id
alpar@1253
    82
    ///
alpar@1253
    83
    void erase(int n) 
alpar@1253
    84
    {
alpar@1253
    85
      int fl=index[n];
alpar@1253
    86
      index[n]=first_free;
alpar@1253
    87
      first_free=n;
alpar@1253
    88
      for(int i=fl+1;i<int(cross.size());++i) {
alpar@1253
    89
	cross[i-1]=cross[i];
alpar@1253
    90
	index[cross[i]]--;
alpar@1253
    91
      }
alpar@1253
    92
      cross.pop_back();
alpar@1253
    93
    }
alpar@1253
    94
    ///An upper bound on the largest fix id.
alpar@1253
    95
alpar@1253
    96
    ///\todo Do we need this?
alpar@1253
    97
    ///
alpar@1253
    98
    std::size_t maxFixId() { return cross.size()-1; }
alpar@1253
    99
  
alpar@1253
   100
  };
alpar@1253
   101
    
alpar@1253
   102
  ///Common base class for LP solvers
athos@1246
   103
  class LpSolverBase {
alpar@1253
   104
    
athos@1247
   105
  public:
athos@1247
   106
alpar@1263
   107
    ///\e
alpar@1293
   108
    enum SolutionStatus {
alpar@1263
   109
      ///\e
alpar@1293
   110
      SOLVED = 0,
alpar@1263
   111
      ///\e
alpar@1293
   112
      UNSOLVED = 1
athos@1291
   113
    };
athos@1291
   114
      
athos@1291
   115
    ///\e
athos@1291
   116
    enum SolutionType {
alpar@1295
   117
      ///Feasible solution has'n been found (but may exist).
alpar@1295
   118
alpar@1295
   119
      ///\todo NOTFOUND might be a better name.
alpar@1295
   120
      ///
alpar@1293
   121
      UNDEFINED = 0,
alpar@1295
   122
      ///The problem has no feasible solution
alpar@1293
   123
      INFEASIBLE = 1,
alpar@1295
   124
      ///Feasible solution found
alpar@1293
   125
      FEASIBLE = 2,
alpar@1295
   126
      ///Optimal solution exists and found
alpar@1295
   127
      OPTIMAL = 3,
alpar@1295
   128
      ///The cost function is unbounded
alpar@1295
   129
alpar@1295
   130
      ///\todo Give a feasible solution and an infinite ray (and the
alpar@1295
   131
      ///corresponding bases)
alpar@1295
   132
      INFINITE = 4
alpar@1263
   133
    };
alpar@1263
   134
      
alpar@1256
   135
    ///The floating point type used by the solver
athos@1247
   136
    typedef double Value;
alpar@1256
   137
    ///The infinity constant
athos@1247
   138
    static const Value INF;
alpar@1264
   139
    ///The not a number constant
alpar@1264
   140
    static const Value NaN;
alpar@1253
   141
    
alpar@1256
   142
    ///Refer to a column of the LP.
alpar@1256
   143
alpar@1256
   144
    ///This type is used to refer to a column of the LP.
alpar@1256
   145
    ///
alpar@1256
   146
    ///Its value remains valid and correct even after the addition or erase of
alpar@1273
   147
    ///other columns.
alpar@1256
   148
    ///
alpar@1256
   149
    ///\todo Document what can one do with a Col (INVALID, comparing,
alpar@1256
   150
    ///it is similar to Node/Edge)
alpar@1256
   151
    class Col {
alpar@1256
   152
    protected:
alpar@1256
   153
      int id;
alpar@1256
   154
      friend class LpSolverBase;
alpar@1256
   155
    public:
alpar@1259
   156
      typedef Value ExprValue;
alpar@1256
   157
      typedef True LpSolverCol;
alpar@1256
   158
      Col() {}
alpar@1256
   159
      Col(const Invalid&) : id(-1) {}
alpar@1256
   160
      bool operator<(Col c) const  {return id<c.id;}
alpar@1256
   161
      bool operator==(Col c) const  {return id==c.id;}
alpar@1256
   162
      bool operator!=(Col c) const  {return id==c.id;}
alpar@1256
   163
    };
alpar@1256
   164
alpar@1256
   165
    ///Refer to a row of the LP.
alpar@1256
   166
alpar@1256
   167
    ///This type is used to refer to a row of the LP.
alpar@1256
   168
    ///
alpar@1256
   169
    ///Its value remains valid and correct even after the addition or erase of
alpar@1273
   170
    ///other rows.
alpar@1256
   171
    ///
alpar@1256
   172
    ///\todo Document what can one do with a Row (INVALID, comparing,
alpar@1256
   173
    ///it is similar to Node/Edge)
alpar@1256
   174
    class Row {
alpar@1256
   175
    protected:
alpar@1256
   176
      int id;
alpar@1256
   177
      friend class LpSolverBase;
alpar@1256
   178
    public:
alpar@1259
   179
      typedef Value ExprValue;
alpar@1256
   180
      typedef True LpSolverRow;
alpar@1256
   181
      Row() {}
alpar@1256
   182
      Row(const Invalid&) : id(-1) {}
alpar@1256
   183
      typedef True LpSolverRow;
alpar@1256
   184
      bool operator<(Row c) const  {return id<c.id;}
alpar@1256
   185
      bool operator==(Row c) const  {return id==c.id;}
alpar@1256
   186
      bool operator!=(Row c) const  {return id==c.id;} 
alpar@1256
   187
   };
alpar@1259
   188
    
alpar@1279
   189
    ///Linear expression of variables and a constant component
alpar@1279
   190
    
alpar@1279
   191
    ///This data structure strores a linear expression of the variables
alpar@1279
   192
    ///(\ref Col "Col"s) and also has a constant component.
alpar@1279
   193
    ///
alpar@1279
   194
    ///There are several ways to access and modify the contents of this
alpar@1279
   195
    ///container.
alpar@1279
   196
    ///- Its it fully compatible with \c std::map<Col,double>, so for expamle
alpar@1279
   197
    ///if \c e is an Expr and \c v and \c w are of type \ref Col then you can
alpar@1279
   198
    ///read and modify the coefficients like
alpar@1279
   199
    ///these.
alpar@1279
   200
    ///\code
alpar@1279
   201
    ///e[v]=5;
alpar@1279
   202
    ///e[v]+=12;
alpar@1279
   203
    ///e.erase(v);
alpar@1279
   204
    ///\endcode
alpar@1279
   205
    ///or you can also iterate through its elements.
alpar@1279
   206
    ///\code
alpar@1279
   207
    ///double s=0;
alpar@1279
   208
    ///for(LpSolverBase::Expr::iterator i=e.begin();i!=e.end();++i)
alpar@1279
   209
    ///  s+=i->second;
alpar@1279
   210
    ///\endcode
alpar@1279
   211
    ///(This code computes the sum of all coefficients).
alpar@1279
   212
    ///- Numbers (<tt>double</tt>'s)
alpar@1279
   213
    ///and variables (\ref Col "Col"s) directly convert to an
alpar@1279
   214
    ///\ref Expr and the usual linear operations are defined so  
alpar@1279
   215
    ///\code
alpar@1279
   216
    ///v+w
alpar@1279
   217
    ///2*v-3.12*(v-w/2)+2
alpar@1279
   218
    ///v*2.1+(3*v+(v*12+w+6)*3)/2
alpar@1279
   219
    ///\endcode
alpar@1279
   220
    ///are valid expressions. The usual assignment operations are also defined.
alpar@1279
   221
    ///\code
alpar@1279
   222
    ///e=v+w;
alpar@1279
   223
    ///e+=2*v-3.12*(v-w/2)+2;
alpar@1279
   224
    ///e*=3.4;
alpar@1279
   225
    ///e/=5;
alpar@1279
   226
    ///\endcode
alpar@1279
   227
    ///- The constant member can be set and read by \ref constComp()
alpar@1279
   228
    ///\code
alpar@1279
   229
    ///e.constComp()=12;
alpar@1279
   230
    ///double c=e.constComp();
alpar@1279
   231
    ///\endcode
alpar@1279
   232
    ///
alpar@1279
   233
    ///\note that \ref clear() not only sets all coefficients to 0 but also
alpar@1279
   234
    ///clears the constant components.
alpar@1273
   235
    class Expr : public std::map<Col,Value>
alpar@1272
   236
    {
alpar@1272
   237
    public:
alpar@1273
   238
      typedef LpSolverBase::Col Key; 
alpar@1273
   239
      typedef LpSolverBase::Value Value;
alpar@1272
   240
      
alpar@1272
   241
    protected:
alpar@1273
   242
      typedef std::map<Col,Value> Base;
alpar@1272
   243
      
alpar@1273
   244
      Value const_comp;
alpar@1272
   245
  public:
alpar@1272
   246
      typedef True IsLinExpression;
alpar@1272
   247
      ///\e
alpar@1272
   248
      Expr() : Base(), const_comp(0) { }
alpar@1272
   249
      ///\e
alpar@1273
   250
      Expr(const Key &v) : const_comp(0) {
alpar@1272
   251
	Base::insert(std::make_pair(v, 1));
alpar@1272
   252
      }
alpar@1272
   253
      ///\e
alpar@1273
   254
      Expr(const Value &v) : const_comp(v) {}
alpar@1272
   255
      ///\e
alpar@1273
   256
      void set(const Key &v,const Value &c) {
alpar@1272
   257
	Base::insert(std::make_pair(v, c));
alpar@1272
   258
      }
alpar@1272
   259
      ///\e
alpar@1273
   260
      Value &constComp() { return const_comp; }
alpar@1272
   261
      ///\e
alpar@1273
   262
      const Value &constComp() const { return const_comp; }
alpar@1272
   263
      
alpar@1272
   264
      ///Removes the components with zero coefficient.
alpar@1272
   265
      void simplify() {
alpar@1272
   266
	for (Base::iterator i=Base::begin(); i!=Base::end();) {
alpar@1272
   267
	  Base::iterator j=i;
alpar@1272
   268
	  ++j;
alpar@1272
   269
	  if ((*i).second==0) Base::erase(i);
alpar@1272
   270
	  j=i;
alpar@1272
   271
	}
alpar@1272
   272
      }
alpar@1273
   273
alpar@1273
   274
      ///Sets all coefficients and the constant component to 0.
alpar@1273
   275
      void clear() {
alpar@1273
   276
	Base::clear();
alpar@1273
   277
	const_comp=0;
alpar@1273
   278
      }
alpar@1273
   279
alpar@1272
   280
      ///\e
alpar@1272
   281
      Expr &operator+=(const Expr &e) {
alpar@1272
   282
	for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
alpar@1272
   283
	  (*this)[j->first]+=j->second;
alpar@1272
   284
	///\todo it might be speeded up using "hints"
alpar@1272
   285
	const_comp+=e.const_comp;
alpar@1272
   286
	return *this;
alpar@1272
   287
      }
alpar@1272
   288
      ///\e
alpar@1272
   289
      Expr &operator-=(const Expr &e) {
alpar@1272
   290
	for (Base::const_iterator j=e.begin(); j!=e.end(); ++j)
alpar@1272
   291
	  (*this)[j->first]-=j->second;
alpar@1272
   292
	const_comp-=e.const_comp;
alpar@1272
   293
	return *this;
alpar@1272
   294
      }
alpar@1272
   295
      ///\e
alpar@1273
   296
      Expr &operator*=(const Value &c) {
alpar@1272
   297
	for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
alpar@1272
   298
	  j->second*=c;
alpar@1272
   299
	const_comp*=c;
alpar@1272
   300
	return *this;
alpar@1272
   301
      }
alpar@1272
   302
      ///\e
alpar@1273
   303
      Expr &operator/=(const Value &c) {
alpar@1272
   304
	for (Base::iterator j=Base::begin(); j!=Base::end(); ++j)
alpar@1272
   305
	  j->second/=c;
alpar@1272
   306
	const_comp/=c;
alpar@1272
   307
	return *this;
alpar@1272
   308
      }
alpar@1272
   309
    };
alpar@1272
   310
    
alpar@1264
   311
    ///Linear constraint
alpar@1272
   312
    //typedef LinConstr<Expr> Constr;
alpar@1272
   313
    class Constr
alpar@1272
   314
    {
alpar@1272
   315
    public:
alpar@1272
   316
      typedef LpSolverBase::Expr Expr;
alpar@1273
   317
      typedef Expr::Key Key;
alpar@1273
   318
      typedef Expr::Value Value;
alpar@1272
   319
      
alpar@1273
   320
      static const Value INF;
alpar@1273
   321
      static const Value NaN;
alpar@1273
   322
      //     static const Value INF=0;
alpar@1273
   323
      //     static const Value NaN=1;
alpar@1272
   324
      
alpar@1273
   325
    protected:
alpar@1273
   326
      Expr _expr;
alpar@1273
   327
      Value _lb,_ub;
alpar@1273
   328
    public:
alpar@1273
   329
      ///\e
alpar@1273
   330
      Constr() : _expr(), _lb(NaN), _ub(NaN) {}
alpar@1273
   331
      ///\e
alpar@1273
   332
      Constr(Value lb,const Expr &e,Value ub) :
alpar@1273
   333
	_expr(e), _lb(lb), _ub(ub) {}
alpar@1273
   334
      ///\e
alpar@1273
   335
      Constr(const Expr &e,Value ub) : 
alpar@1273
   336
	_expr(e), _lb(NaN), _ub(ub) {}
alpar@1273
   337
      ///\e
alpar@1273
   338
      Constr(Value lb,const Expr &e) :
alpar@1273
   339
	_expr(e), _lb(lb), _ub(NaN) {}
alpar@1273
   340
      ///\e
alpar@1272
   341
      Constr(const Expr &e) : 
alpar@1273
   342
	_expr(e), _lb(NaN), _ub(NaN) {}
alpar@1273
   343
      ///\e
alpar@1273
   344
      void clear() 
alpar@1273
   345
      {
alpar@1273
   346
	_expr.clear();
alpar@1273
   347
	_lb=_ub=NaN;
alpar@1273
   348
      }
alpar@1273
   349
      ///\e
alpar@1273
   350
      Expr &expr() { return _expr; }
alpar@1273
   351
      ///\e
alpar@1273
   352
      const Expr &expr() const { return _expr; }
alpar@1273
   353
      ///\e
alpar@1273
   354
      Value &lowerBound() { return _lb; }
alpar@1273
   355
      ///\e
alpar@1273
   356
      const Value &lowerBound() const { return _lb; }
alpar@1273
   357
      ///\e
alpar@1273
   358
      Value &upperBound() { return _ub; }
alpar@1273
   359
      ///\e
alpar@1273
   360
      const Value &upperBound() const { return _ub; }
alpar@1275
   361
      ///\e
alpar@1295
   362
      bool lowerBounded() const { 
alpar@1295
   363
	using namespace std;
alpar@1295
   364
	return isfinite(_lb);
alpar@1295
   365
      }
alpar@1275
   366
      ///\e
alpar@1295
   367
      bool upperBounded() const {
alpar@1295
   368
	using namespace std;
alpar@1295
   369
	return isfinite(_ub);
alpar@1295
   370
      }
alpar@1272
   371
    };
alpar@1272
   372
    
alpar@1253
   373
alpar@1253
   374
  protected:
alpar@1253
   375
    _FixId rows;
alpar@1253
   376
    _FixId cols;
athos@1246
   377
athos@1246
   378
    virtual int _addCol() = 0;
athos@1246
   379
    virtual int _addRow() = 0;
athos@1246
   380
    virtual void _setRowCoeffs(int i, 
athos@1251
   381
			       int length,
athos@1247
   382
                               int  const * indices, 
athos@1247
   383
                               Value  const * values ) = 0;
athos@1246
   384
    virtual void _setColCoeffs(int i, 
athos@1251
   385
			       int length,
athos@1247
   386
                               int  const * indices, 
athos@1247
   387
                               Value  const * values ) = 0;
alpar@1294
   388
    virtual void _setColLowerBound(int i, Value value) = 0;
alpar@1294
   389
    virtual void _setColUpperBound(int i, Value value) = 0;
alpar@1294
   390
    virtual void _setRowLowerBound(int i, Value value) = 0;
alpar@1294
   391
    virtual void _setRowUpperBound(int i, Value value) = 0;
alpar@1294
   392
    virtual void _setObjCoeff(int i, Value obj_coef) = 0;
alpar@1294
   393
    virtual SolutionStatus _solve() = 0;
alpar@1294
   394
    virtual Value _getPrimal(int i) = 0;
alpar@1294
   395
    virtual SolutionType _getPrimalType() = 0;
alpar@1253
   396
alpar@1253
   397
alpar@1253
   398
    void clearObj() {}
alpar@1253
   399
  public:
alpar@1253
   400
alpar@1253
   401
alpar@1253
   402
    ///\e
alpar@1253
   403
    virtual ~LpSolverBase() {}
alpar@1253
   404
alpar@1294
   405
    ///\name Build up and modify of the LP
alpar@1263
   406
alpar@1263
   407
    ///@{
alpar@1263
   408
alpar@1253
   409
    ///Add a new empty column (i.e a new variable) to the LP
alpar@1253
   410
    Col addCol() { Col c; c.id=cols.insert(_addCol()); return c;}
alpar@1263
   411
alpar@1294
   412
    ///\brief Adds several new columns
alpar@1294
   413
    ///(i.e a variables) at once
alpar@1256
   414
    ///
alpar@1273
   415
    ///This magic function takes a container as its argument
alpar@1256
   416
    ///and fills its elements
alpar@1256
   417
    ///with new columns (i.e. variables)
alpar@1273
   418
    ///\param t can be
alpar@1273
   419
    ///- a standard STL compatible iterable container with
alpar@1273
   420
    ///\ref Col as its \c values_type
alpar@1273
   421
    ///like
alpar@1273
   422
    ///\code
alpar@1273
   423
    ///std::vector<LpSolverBase::Col>
alpar@1273
   424
    ///std::list<LpSolverBase::Col>
alpar@1273
   425
    ///\endcode
alpar@1273
   426
    ///- a standard STL compatible iterable container with
alpar@1273
   427
    ///\ref Col as its \c mapped_type
alpar@1273
   428
    ///like
alpar@1273
   429
    ///\code
alpar@1273
   430
    ///std::map<AnyType,LpSolverBase::Col>
alpar@1273
   431
    ///\endcode
alpar@1273
   432
    ///- an iterable lemon \ref concept::WriteMap "write map" like 
alpar@1273
   433
    ///\code
alpar@1273
   434
    ///ListGraph::NodeMap<LpSolverBase::Col>
alpar@1273
   435
    ///ListGraph::EdgeMap<LpSolverBase::Col>
alpar@1273
   436
    ///\endcode
alpar@1256
   437
    ///\return The number of the created column.
alpar@1256
   438
    ///\bug Iterable nodemap hasn't been implemented yet.
alpar@1256
   439
#ifdef DOXYGEN
alpar@1256
   440
    template<class T>
alpar@1256
   441
    int addColSet(T &t) { return 0;} 
alpar@1256
   442
#else
alpar@1256
   443
    template<class T>
alpar@1256
   444
    typename enable_if<typename T::value_type::LpSolverCol,int>::type
alpar@1256
   445
    addColSet(T &t,dummy<0> = 0) {
alpar@1256
   446
      int s=0;
alpar@1256
   447
      for(typename T::iterator i=t.begin();i!=t.end();++i) {*i=addCol();s++;}
alpar@1256
   448
      return s;
alpar@1256
   449
    }
alpar@1256
   450
    template<class T>
alpar@1256
   451
    typename enable_if<typename T::value_type::second_type::LpSolverCol,
alpar@1256
   452
		       int>::type
alpar@1256
   453
    addColSet(T &t,dummy<1> = 1) { 
alpar@1256
   454
      int s=0;
alpar@1256
   455
      for(typename T::iterator i=t.begin();i!=t.end();++i) {
alpar@1256
   456
	i->second=addCol();
alpar@1256
   457
	s++;
alpar@1256
   458
      }
alpar@1256
   459
      return s;
alpar@1256
   460
    }
alpar@1272
   461
    template<class T>
alpar@1272
   462
    typename enable_if<typename T::ValueSet::value_type::LpSolverCol,
alpar@1272
   463
		       int>::type
alpar@1272
   464
    addColSet(T &t,dummy<2> = 2) { 
alpar@1272
   465
      ///\bug <tt>return addColSet(t.valueSet());</tt> should also work.
alpar@1272
   466
      int s=0;
alpar@1272
   467
      for(typename T::ValueSet::iterator i=t.valueSet().begin();
alpar@1272
   468
	  i!=t.valueSet().end();
alpar@1272
   469
	  ++i)
alpar@1272
   470
	{
alpar@1272
   471
	  *i=addCol();
alpar@1272
   472
	  s++;
alpar@1272
   473
	}
alpar@1272
   474
      return s;
alpar@1272
   475
    }
alpar@1256
   476
#endif
alpar@1263
   477
alpar@1253
   478
    ///Add a new empty row (i.e a new constaint) to the LP
alpar@1258
   479
alpar@1258
   480
    ///This function adds a new empty row (i.e a new constaint) to the LP.
alpar@1258
   481
    ///\return The created row
alpar@1253
   482
    Row addRow() { Row r; r.id=rows.insert(_addRow()); return r;}
alpar@1253
   483
alpar@1258
   484
    ///Set a row (i.e a constaint) of the LP
alpar@1253
   485
alpar@1258
   486
    ///\param r is the row to be modified
alpar@1259
   487
    ///\param l is lower bound (-\ref INF means no bound)
alpar@1258
   488
    ///\param e is a linear expression (see \ref Expr)
alpar@1259
   489
    ///\param u is the upper bound (\ref INF means no bound)
alpar@1253
   490
    ///\bug This is a temportary function. The interface will change to
alpar@1253
   491
    ///a better one.
alpar@1258
   492
    void setRow(Row r, Value l,const Expr &e, Value u) {
alpar@1253
   493
      std::vector<int> indices;
alpar@1253
   494
      std::vector<Value> values;
alpar@1253
   495
      indices.push_back(0);
alpar@1253
   496
      values.push_back(0);
alpar@1258
   497
      for(Expr::const_iterator i=e.begin(); i!=e.end(); ++i)
alpar@1256
   498
	if((*i).second!=0) { ///\bug EPSILON would be necessary here!!!
alpar@1256
   499
	  indices.push_back(cols.floatingId((*i).first.id));
alpar@1256
   500
	  values.push_back((*i).second);
alpar@1256
   501
	}
alpar@1253
   502
      _setRowCoeffs(rows.floatingId(r.id),indices.size()-1,
alpar@1253
   503
		    &indices[0],&values[0]);
alpar@1256
   504
      _setRowLowerBound(rows.floatingId(r.id),l-e.constComp());
alpar@1256
   505
      _setRowUpperBound(rows.floatingId(r.id),u-e.constComp());
alpar@1258
   506
    }
alpar@1258
   507
alpar@1264
   508
    ///Set a row (i.e a constaint) of the LP
alpar@1264
   509
alpar@1264
   510
    ///\param r is the row to be modified
alpar@1264
   511
    ///\param c is a linear expression (see \ref Constr)
alpar@1264
   512
    void setRow(Row r, const Constr &c) {
alpar@1273
   513
      setRow(r,
alpar@1275
   514
	     c.lowerBounded()?c.lowerBound():-INF,
alpar@1273
   515
	     c.expr(),
alpar@1275
   516
	     c.upperBounded()?c.upperBound():INF);
alpar@1264
   517
    }
alpar@1264
   518
alpar@1258
   519
    ///Add a new row (i.e a new constaint) to the LP
alpar@1258
   520
alpar@1259
   521
    ///\param l is the lower bound (-\ref INF means no bound)
alpar@1258
   522
    ///\param e is a linear expression (see \ref Expr)
alpar@1259
   523
    ///\param u is the upper bound (\ref INF means no bound)
alpar@1258
   524
    ///\return The created row.
alpar@1258
   525
    ///\bug This is a temportary function. The interface will change to
alpar@1258
   526
    ///a better one.
alpar@1258
   527
    Row addRow(Value l,const Expr &e, Value u) {
alpar@1258
   528
      Row r=addRow();
alpar@1258
   529
      setRow(r,l,e,u);
alpar@1253
   530
      return r;
alpar@1253
   531
    }
alpar@1253
   532
alpar@1264
   533
    ///Add a new row (i.e a new constaint) to the LP
alpar@1264
   534
alpar@1264
   535
    ///\param c is a linear expression (see \ref Constr)
alpar@1264
   536
    ///\return The created row.
alpar@1264
   537
    Row addRow(const Constr &c) {
alpar@1264
   538
      Row r=addRow();
alpar@1264
   539
      setRow(r,c);
alpar@1264
   540
      return r;
alpar@1264
   541
    }
alpar@1264
   542
alpar@1253
   543
    /// Set the lower bound of a column (i.e a variable)
alpar@1253
   544
alpar@1293
   545
    /// The upper bound of a variable (column) has to be given by an 
alpar@1253
   546
    /// extended number of type Value, i.e. a finite number of type 
alpar@1259
   547
    /// Value or -\ref INF.
alpar@1293
   548
    void colLowerBound(Col c, Value value) {
alpar@1253
   549
      _setColLowerBound(cols.floatingId(c.id),value);
alpar@1253
   550
    }
alpar@1253
   551
    /// Set the upper bound of a column (i.e a variable)
alpar@1253
   552
alpar@1293
   553
    /// The upper bound of a variable (column) has to be given by an 
alpar@1253
   554
    /// extended number of type Value, i.e. a finite number of type 
alpar@1259
   555
    /// Value or \ref INF.
alpar@1293
   556
    void colUpperBound(Col c, Value value) {
alpar@1253
   557
      _setColUpperBound(cols.floatingId(c.id),value);
alpar@1253
   558
    };
alpar@1293
   559
    /// Set the lower and the upper bounds of a column (i.e a variable)
alpar@1293
   560
alpar@1293
   561
    /// The lower and the upper bounds of
alpar@1293
   562
    /// a variable (column) have to be given by an 
alpar@1293
   563
    /// extended number of type Value, i.e. a finite number of type 
alpar@1293
   564
    /// Value, -\ref INF or \ref INF.
alpar@1293
   565
    void colBounds(Col c, Value lower, Value upper) {
alpar@1293
   566
      _setColLowerBound(cols.floatingId(c.id),lower);
alpar@1293
   567
      _setColUpperBound(cols.floatingId(c.id),upper);
alpar@1293
   568
    }
alpar@1293
   569
    
alpar@1253
   570
    /// Set the lower bound of a row (i.e a constraint)
alpar@1253
   571
alpar@1293
   572
    /// The lower bound of a linear expression (row) has to be given by an 
alpar@1253
   573
    /// extended number of type Value, i.e. a finite number of type 
alpar@1259
   574
    /// Value or -\ref INF.
alpar@1293
   575
    void rowLowerBound(Row r, Value value) {
alpar@1253
   576
      _setRowLowerBound(rows.floatingId(r.id),value);
alpar@1253
   577
    };
alpar@1253
   578
    /// Set the upper bound of a row (i.e a constraint)
alpar@1253
   579
alpar@1293
   580
    /// The upper bound of a linear expression (row) has to be given by an 
alpar@1253
   581
    /// extended number of type Value, i.e. a finite number of type 
alpar@1259
   582
    /// Value or \ref INF.
alpar@1293
   583
    void rowUpperBound(Row r, Value value) {
alpar@1253
   584
      _setRowUpperBound(rows.floatingId(r.id),value);
alpar@1253
   585
    };
alpar@1293
   586
    /// Set the lower and the upper bounds of a row (i.e a variable)
alpar@1293
   587
alpar@1293
   588
    /// The lower and the upper bounds of
alpar@1293
   589
    /// a constraint (row) have to be given by an 
alpar@1293
   590
    /// extended number of type Value, i.e. a finite number of type 
alpar@1293
   591
    /// Value, -\ref INF or \ref INF.
alpar@1293
   592
    void rowBounds(Row c, Value lower, Value upper) {
alpar@1293
   593
      _setRowLowerBound(rows.floatingId(c.id),lower);
alpar@1293
   594
      _setRowUpperBound(rows.floatingId(c.id),upper);
alpar@1293
   595
    }
alpar@1293
   596
    
alpar@1253
   597
    ///Set an element of the objective function
alpar@1293
   598
    void objCoeff(Col c, Value v) {_setObjCoeff(cols.floatingId(c.id),v); };
alpar@1253
   599
    ///Set the objective function
alpar@1253
   600
    
alpar@1253
   601
    ///\param e is a linear expression of type \ref Expr.
alpar@1253
   602
    ///\todo What to do with the constant component?
alpar@1253
   603
    void setObj(Expr e) {
alpar@1253
   604
      clearObj();
alpar@1253
   605
      for (Expr::iterator i=e.begin(); i!=e.end(); ++i)
alpar@1293
   606
	objCoeff((*i).first,(*i).second);
alpar@1253
   607
    }
alpar@1263
   608
alpar@1263
   609
    ///@}
alpar@1263
   610
alpar@1263
   611
alpar@1294
   612
    ///\name Solve the LP
alpar@1263
   613
alpar@1263
   614
    ///@{
alpar@1263
   615
alpar@1263
   616
    ///\e
alpar@1293
   617
    SolutionStatus solve() { return _solve(); }
alpar@1263
   618
    
alpar@1263
   619
    ///@}
alpar@1263
   620
    
alpar@1294
   621
    ///\name Obtain the solution
alpar@1263
   622
alpar@1263
   623
    ///@{
alpar@1263
   624
alpar@1263
   625
    ///\e
alpar@1294
   626
    SolutionType primalType() {
alpar@1294
   627
      return _getPrimalType();
alpar@1294
   628
    }
alpar@1294
   629
alpar@1294
   630
    ///\e
alpar@1293
   631
    Value primal(Col c) { return _getPrimal(cols.floatingId(c.id)); }
alpar@1263
   632
alpar@1263
   633
    ///@}
alpar@1253
   634
    
athos@1248
   635
  };  
athos@1246
   636
alpar@1272
   637
  ///\e
alpar@1272
   638
  
alpar@1272
   639
  ///\relates LpSolverBase::Expr
alpar@1272
   640
  ///
alpar@1272
   641
  inline LpSolverBase::Expr operator+(const LpSolverBase::Expr &a,
alpar@1272
   642
				      const LpSolverBase::Expr &b) 
alpar@1272
   643
  {
alpar@1272
   644
    LpSolverBase::Expr tmp(a);
alpar@1272
   645
    tmp+=b; ///\todo Don't STL have some special 'merge' algorithm?
alpar@1272
   646
    return tmp;
alpar@1272
   647
  }
alpar@1272
   648
  ///\e
alpar@1272
   649
  
alpar@1272
   650
  ///\relates LpSolverBase::Expr
alpar@1272
   651
  ///
alpar@1272
   652
  inline LpSolverBase::Expr operator-(const LpSolverBase::Expr &a,
alpar@1272
   653
				      const LpSolverBase::Expr &b) 
alpar@1272
   654
  {
alpar@1272
   655
    LpSolverBase::Expr tmp(a);
alpar@1272
   656
    tmp-=b; ///\todo Don't STL have some special 'merge' algorithm?
alpar@1272
   657
    return tmp;
alpar@1272
   658
  }
alpar@1272
   659
  ///\e
alpar@1272
   660
  
alpar@1272
   661
  ///\relates LpSolverBase::Expr
alpar@1272
   662
  ///
alpar@1272
   663
  inline LpSolverBase::Expr operator*(const LpSolverBase::Expr &a,
alpar@1273
   664
				      const LpSolverBase::Value &b) 
alpar@1272
   665
  {
alpar@1272
   666
    LpSolverBase::Expr tmp(a);
alpar@1272
   667
    tmp*=b; ///\todo Don't STL have some special 'merge' algorithm?
alpar@1272
   668
    return tmp;
alpar@1272
   669
  }
alpar@1272
   670
  
alpar@1272
   671
  ///\e
alpar@1272
   672
  
alpar@1272
   673
  ///\relates LpSolverBase::Expr
alpar@1272
   674
  ///
alpar@1273
   675
  inline LpSolverBase::Expr operator*(const LpSolverBase::Value &a,
alpar@1272
   676
				      const LpSolverBase::Expr &b) 
alpar@1272
   677
  {
alpar@1272
   678
    LpSolverBase::Expr tmp(b);
alpar@1272
   679
    tmp*=a; ///\todo Don't STL have some special 'merge' algorithm?
alpar@1272
   680
    return tmp;
alpar@1272
   681
  }
alpar@1272
   682
  ///\e
alpar@1272
   683
  
alpar@1272
   684
  ///\relates LpSolverBase::Expr
alpar@1272
   685
  ///
alpar@1272
   686
  inline LpSolverBase::Expr operator/(const LpSolverBase::Expr &a,
alpar@1273
   687
				      const LpSolverBase::Value &b) 
alpar@1272
   688
  {
alpar@1272
   689
    LpSolverBase::Expr tmp(a);
alpar@1272
   690
    tmp/=b; ///\todo Don't STL have some special 'merge' algorithm?
alpar@1272
   691
    return tmp;
alpar@1272
   692
  }
alpar@1272
   693
  
alpar@1272
   694
  ///\e
alpar@1272
   695
  
alpar@1272
   696
  ///\relates LpSolverBase::Constr
alpar@1272
   697
  ///
alpar@1272
   698
  inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
alpar@1272
   699
					 const LpSolverBase::Expr &f) 
alpar@1272
   700
  {
alpar@1272
   701
    return LpSolverBase::Constr(-LpSolverBase::INF,e-f,0);
alpar@1272
   702
  }
alpar@1272
   703
alpar@1272
   704
  ///\e
alpar@1272
   705
  
alpar@1272
   706
  ///\relates LpSolverBase::Constr
alpar@1272
   707
  ///
alpar@1273
   708
  inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &e,
alpar@1272
   709
					 const LpSolverBase::Expr &f) 
alpar@1272
   710
  {
alpar@1272
   711
    return LpSolverBase::Constr(e,f);
alpar@1272
   712
  }
alpar@1272
   713
alpar@1272
   714
  ///\e
alpar@1272
   715
  
alpar@1272
   716
  ///\relates LpSolverBase::Constr
alpar@1272
   717
  ///
alpar@1272
   718
  inline LpSolverBase::Constr operator<=(const LpSolverBase::Expr &e,
alpar@1273
   719
					 const LpSolverBase::Value &f) 
alpar@1272
   720
  {
alpar@1272
   721
    return LpSolverBase::Constr(e,f);
alpar@1272
   722
  }
alpar@1272
   723
alpar@1272
   724
  ///\e
alpar@1272
   725
  
alpar@1272
   726
  ///\relates LpSolverBase::Constr
alpar@1272
   727
  ///
alpar@1272
   728
  inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
alpar@1272
   729
					 const LpSolverBase::Expr &f) 
alpar@1272
   730
  {
alpar@1272
   731
    return LpSolverBase::Constr(-LpSolverBase::INF,f-e,0);
alpar@1272
   732
  }
alpar@1272
   733
alpar@1272
   734
alpar@1272
   735
  ///\e
alpar@1272
   736
  
alpar@1272
   737
  ///\relates LpSolverBase::Constr
alpar@1272
   738
  ///
alpar@1273
   739
  inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &e,
alpar@1272
   740
					 const LpSolverBase::Expr &f) 
alpar@1272
   741
  {
alpar@1272
   742
    return LpSolverBase::Constr(f,e);
alpar@1272
   743
  }
alpar@1272
   744
alpar@1272
   745
alpar@1272
   746
  ///\e
alpar@1272
   747
  
alpar@1272
   748
  ///\relates LpSolverBase::Constr
alpar@1272
   749
  ///
alpar@1272
   750
  inline LpSolverBase::Constr operator>=(const LpSolverBase::Expr &e,
alpar@1273
   751
					 const LpSolverBase::Value &f) 
alpar@1272
   752
  {
alpar@1272
   753
    return LpSolverBase::Constr(f,e);
alpar@1272
   754
  }
alpar@1272
   755
alpar@1272
   756
  ///\e
alpar@1272
   757
  
alpar@1272
   758
  ///\relates LpSolverBase::Constr
alpar@1272
   759
  ///
alpar@1272
   760
  inline LpSolverBase::Constr operator==(const LpSolverBase::Expr &e,
alpar@1272
   761
					 const LpSolverBase::Expr &f) 
alpar@1272
   762
  {
alpar@1272
   763
    return LpSolverBase::Constr(0,e-f,0);
alpar@1272
   764
  }
alpar@1272
   765
alpar@1272
   766
  ///\e
alpar@1272
   767
  
alpar@1272
   768
  ///\relates LpSolverBase::Constr
alpar@1272
   769
  ///
alpar@1273
   770
  inline LpSolverBase::Constr operator<=(const LpSolverBase::Value &n,
alpar@1272
   771
					 const LpSolverBase::Constr&c) 
alpar@1272
   772
  {
alpar@1272
   773
    LpSolverBase::Constr tmp(c);
alpar@1273
   774
    ///\todo Create an own exception type.
alpar@1273
   775
    if(!isnan(tmp.lowerBound())) throw LogicError();
alpar@1273
   776
    else tmp.lowerBound()=n;
alpar@1272
   777
    return tmp;
alpar@1272
   778
  }
alpar@1272
   779
  ///\e
alpar@1272
   780
  
alpar@1272
   781
  ///\relates LpSolverBase::Constr
alpar@1272
   782
  ///
alpar@1272
   783
  inline LpSolverBase::Constr operator<=(const LpSolverBase::Constr& c,
alpar@1273
   784
					 const LpSolverBase::Value &n)
alpar@1272
   785
  {
alpar@1272
   786
    LpSolverBase::Constr tmp(c);
alpar@1273
   787
    ///\todo Create an own exception type.
alpar@1273
   788
    if(!isnan(tmp.upperBound())) throw LogicError();
alpar@1273
   789
    else tmp.upperBound()=n;
alpar@1272
   790
    return tmp;
alpar@1272
   791
  }
alpar@1272
   792
alpar@1272
   793
  ///\e
alpar@1272
   794
  
alpar@1272
   795
  ///\relates LpSolverBase::Constr
alpar@1272
   796
  ///
alpar@1273
   797
  inline LpSolverBase::Constr operator>=(const LpSolverBase::Value &n,
alpar@1272
   798
					 const LpSolverBase::Constr&c) 
alpar@1272
   799
  {
alpar@1272
   800
    LpSolverBase::Constr tmp(c);
alpar@1273
   801
    ///\todo Create an own exception type.
alpar@1273
   802
    if(!isnan(tmp.upperBound())) throw LogicError();
alpar@1273
   803
    else tmp.upperBound()=n;
alpar@1272
   804
    return tmp;
alpar@1272
   805
  }
alpar@1272
   806
  ///\e
alpar@1272
   807
  
alpar@1272
   808
  ///\relates LpSolverBase::Constr
alpar@1272
   809
  ///
alpar@1272
   810
  inline LpSolverBase::Constr operator>=(const LpSolverBase::Constr& c,
alpar@1273
   811
					 const LpSolverBase::Value &n)
alpar@1272
   812
  {
alpar@1272
   813
    LpSolverBase::Constr tmp(c);
alpar@1273
   814
    ///\todo Create an own exception type.
alpar@1273
   815
    if(!isnan(tmp.lowerBound())) throw LogicError();
alpar@1273
   816
    else tmp.lowerBound()=n;
alpar@1272
   817
    return tmp;
alpar@1272
   818
  }
alpar@1272
   819
alpar@1272
   820
athos@1246
   821
} //namespace lemon
athos@1246
   822
athos@1246
   823
#endif //LEMON_LP_BASE_H