lemon/cplex.h
author Gabriel Gouvine <gabriel.gouvine.GIT@gmx.com>
Fri, 27 Jan 2017 20:35:13 +0100
changeset 1371 0898f3371d1d
parent 1270 dceba191c00d
permissions -rw-r--r--
Forbid copy construction of StaticDigraph
alpar@484
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@484
     2
 *
alpar@484
     3
 * This file is a part of LEMON, a generic C++ optimization library.
alpar@484
     4
 *
alpar@1270
     5
 * Copyright (C) 2003-2013
alpar@484
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@484
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@484
     8
 *
alpar@484
     9
 * Permission to use, modify and distribute this software is granted
alpar@484
    10
 * provided that this copyright notice appears in all copies. For
alpar@484
    11
 * precise terms see the accompanying LICENSE file.
alpar@484
    12
 *
alpar@484
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@484
    14
 * express or implied, and with no claim as to its suitability for any
alpar@484
    15
 * purpose.
alpar@484
    16
 *
alpar@484
    17
 */
alpar@484
    18
alpar@484
    19
#ifndef LEMON_CPLEX_H
alpar@484
    20
#define LEMON_CPLEX_H
alpar@484
    21
alpar@484
    22
///\file
alpar@484
    23
///\brief Header of the LEMON-CPLEX lp solver interface.
alpar@484
    24
alpar@484
    25
#include <lemon/lp_base.h>
alpar@1347
    26
#include <lemon/bits/lock.h>
alpar@484
    27
alpar@484
    28
struct cpxenv;
alpar@484
    29
struct cpxlp;
alpar@484
    30
alpar@484
    31
namespace lemon {
alpar@484
    32
alpar@484
    33
  /// \brief Reference counted wrapper around cpxenv pointer
alpar@484
    34
  ///
alpar@484
    35
  /// The cplex uses environment object which is responsible for
alpar@484
    36
  /// checking the proper license usage. This class provides a simple
alpar@484
    37
  /// interface for share the environment object between different
alpar@484
    38
  /// problems.
alpar@484
    39
  class CplexEnv {
alpar@484
    40
    friend class CplexBase;
alpar@484
    41
  private:
alpar@484
    42
    cpxenv* _env;
alpar@484
    43
    mutable int* _cnt;
alpar@1347
    44
    mutable bits::Lock* _cnt_lock;
alpar@484
    45
alpar@1347
    46
    void incCnt();
alpar@1347
    47
    void decCnt();
alpar@1347
    48
    
alpar@484
    49
  public:
alpar@484
    50
alpar@484
    51
    /// \brief This exception is thrown when the license check is not
alpar@484
    52
    /// sufficient
alpar@484
    53
    class LicenseError : public Exception {
alpar@484
    54
      friend class CplexEnv;
alpar@484
    55
    private:
alpar@484
    56
alpar@484
    57
      LicenseError(int status);
alpar@484
    58
      char _message[510];
alpar@484
    59
alpar@484
    60
    public:
alpar@484
    61
alpar@484
    62
      /// The short error message
alpar@484
    63
      virtual const char* what() const throw() {
alpar@484
    64
        return _message;
alpar@484
    65
      }
alpar@484
    66
    };
alpar@484
    67
alpar@484
    68
    /// Constructor
alpar@484
    69
    CplexEnv();
alpar@484
    70
    /// Shallow copy constructor
alpar@484
    71
    CplexEnv(const CplexEnv&);
alpar@484
    72
    /// Shallow assignement
alpar@484
    73
    CplexEnv& operator=(const CplexEnv&);
alpar@484
    74
    /// Destructor
alpar@484
    75
    virtual ~CplexEnv();
alpar@484
    76
alpar@484
    77
  protected:
alpar@484
    78
alpar@484
    79
    cpxenv* cplexEnv() { return _env; }
alpar@484
    80
    const cpxenv* cplexEnv() const { return _env; }
alpar@484
    81
  };
alpar@484
    82
alpar@484
    83
  /// \brief Base interface for the CPLEX LP and MIP solver
alpar@484
    84
  ///
alpar@484
    85
  /// This class implements the common interface of the CPLEX LP and
deba@598
    86
  /// MIP solvers.
alpar@484
    87
  /// \ingroup lp_group
alpar@484
    88
  class CplexBase : virtual public LpBase {
alpar@484
    89
  protected:
alpar@484
    90
alpar@484
    91
    CplexEnv _env;
alpar@484
    92
    cpxlp* _prob;
alpar@484
    93
alpar@484
    94
    CplexBase();
alpar@484
    95
    CplexBase(const CplexEnv&);
alpar@484
    96
    CplexBase(const CplexBase &);
alpar@484
    97
    virtual ~CplexBase();
alpar@484
    98
alpar@484
    99
    virtual int _addCol();
alpar@484
   100
    virtual int _addRow();
deba@793
   101
    virtual int _addRow(Value l, ExprIterator b, ExprIterator e, Value u);
alpar@484
   102
alpar@484
   103
    virtual void _eraseCol(int i);
alpar@484
   104
    virtual void _eraseRow(int i);
alpar@484
   105
alpar@484
   106
    virtual void _eraseColId(int i);
alpar@484
   107
    virtual void _eraseRowId(int i);
alpar@484
   108
alpar@484
   109
    virtual void _getColName(int col, std::string& name) const;
alpar@484
   110
    virtual void _setColName(int col, const std::string& name);
alpar@484
   111
    virtual int _colByName(const std::string& name) const;
alpar@484
   112
alpar@484
   113
    virtual void _getRowName(int row, std::string& name) const;
alpar@484
   114
    virtual void _setRowName(int row, const std::string& name);
alpar@484
   115
    virtual int _rowByName(const std::string& name) const;
alpar@484
   116
alpar@484
   117
    virtual void _setRowCoeffs(int i, ExprIterator b, ExprIterator e);
alpar@484
   118
    virtual void _getRowCoeffs(int i, InsertIterator b) const;
alpar@484
   119
alpar@484
   120
    virtual void _setColCoeffs(int i, ExprIterator b, ExprIterator e);
alpar@484
   121
    virtual void _getColCoeffs(int i, InsertIterator b) const;
alpar@484
   122
alpar@484
   123
    virtual void _setCoeff(int row, int col, Value value);
alpar@484
   124
    virtual Value _getCoeff(int row, int col) const;
alpar@484
   125
alpar@484
   126
    virtual void _setColLowerBound(int i, Value value);
alpar@484
   127
    virtual Value _getColLowerBound(int i) const;
alpar@484
   128
alpar@484
   129
    virtual void _setColUpperBound(int i, Value value);
alpar@484
   130
    virtual Value _getColUpperBound(int i) const;
alpar@484
   131
alpar@484
   132
  private:
alpar@484
   133
    void _set_row_bounds(int i, Value lb, Value ub);
alpar@484
   134
  protected:
alpar@484
   135
alpar@484
   136
    virtual void _setRowLowerBound(int i, Value value);
alpar@484
   137
    virtual Value _getRowLowerBound(int i) const;
alpar@484
   138
alpar@484
   139
    virtual void _setRowUpperBound(int i, Value value);
alpar@484
   140
    virtual Value _getRowUpperBound(int i) const;
alpar@484
   141
alpar@484
   142
    virtual void _setObjCoeffs(ExprIterator b, ExprIterator e);
alpar@484
   143
    virtual void _getObjCoeffs(InsertIterator b) const;
alpar@484
   144
alpar@484
   145
    virtual void _setObjCoeff(int i, Value obj_coef);
alpar@484
   146
    virtual Value _getObjCoeff(int i) const;
alpar@484
   147
alpar@484
   148
    virtual void _setSense(Sense sense);
alpar@484
   149
    virtual Sense _getSense() const;
alpar@484
   150
alpar@484
   151
    virtual void _clear();
alpar@484
   152
deba@623
   153
    virtual void _messageLevel(MessageLevel level);
deba@623
   154
    void _applyMessageLevel();
deba@623
   155
deba@623
   156
    bool _message_enabled;
deba@623
   157
alpar@1231
   158
    void _write(std::string file, std::string format) const;
alpar@1231
   159
alpar@484
   160
  public:
alpar@484
   161
alpar@484
   162
    /// Returns the used \c CplexEnv instance
alpar@484
   163
    const CplexEnv& env() const { return _env; }
deba@623
   164
deba@623
   165
    /// \brief Returns the const cpxenv pointer
alpar@484
   166
    ///
deba@623
   167
    /// \note The cpxenv might be destructed with the solver.
alpar@484
   168
    const cpxenv* cplexEnv() const { return _env.cplexEnv(); }
alpar@484
   169
deba@623
   170
    /// \brief Returns the const cpxenv pointer
deba@623
   171
    ///
deba@623
   172
    /// \note The cpxenv might be destructed with the solver.
deba@623
   173
    cpxenv* cplexEnv() { return _env.cplexEnv(); }
deba@623
   174
deba@623
   175
    /// Returns the cplex problem object
alpar@484
   176
    cpxlp* cplexLp() { return _prob; }
deba@623
   177
    /// Returns the cplex problem object
alpar@484
   178
    const cpxlp* cplexLp() const { return _prob; }
alpar@484
   179
alpar@1231
   180
#ifdef DOXYGEN
alpar@1231
   181
    /// Write the problem or the solution to a file in the given format
alpar@1231
   182
alpar@1231
   183
    /// This function writes the problem or the solution
alpar@1231
   184
    /// to a file in the given format.
alpar@1231
   185
    /// Trying to write in an unsupported format will trigger
alpar@1250
   186
    /// \ref lemon::LpBase::UnsupportedFormatError "UnsupportedFormatError".
alpar@1231
   187
    /// \param file The file path
alpar@1231
   188
    /// \param format The output file format.
alpar@1231
   189
    /// Supportted formats are "MPS", "LP" and "SOL".
alpar@1231
   190
    void write(std::string file, std::string format = "MPS") const {}
alpar@1231
   191
#endif
alpar@1231
   192
alpar@484
   193
  };
alpar@484
   194
alpar@484
   195
  /// \brief Interface for the CPLEX LP solver
alpar@484
   196
  ///
alpar@484
   197
  /// This class implements an interface for the CPLEX LP solver.
alpar@484
   198
  ///\ingroup lp_group
alpar@587
   199
  class CplexLp : public LpSolver, public CplexBase {
alpar@484
   200
  public:
alpar@484
   201
    /// \e
alpar@485
   202
    CplexLp();
alpar@484
   203
    /// \e
alpar@485
   204
    CplexLp(const CplexEnv&);
alpar@484
   205
    /// \e
alpar@485
   206
    CplexLp(const CplexLp&);
alpar@484
   207
    /// \e
alpar@485
   208
    virtual ~CplexLp();
alpar@484
   209
alpar@587
   210
    /// \e
alpar@587
   211
    virtual CplexLp* cloneSolver() const;
alpar@587
   212
    /// \e
alpar@587
   213
    virtual CplexLp* newSolver() const;
alpar@587
   214
alpar@484
   215
  private:
alpar@484
   216
alpar@484
   217
    // these values cannot retrieved element by element
alpar@484
   218
    mutable std::vector<int> _col_status;
alpar@484
   219
    mutable std::vector<int> _row_status;
alpar@484
   220
alpar@484
   221
    mutable std::vector<Value> _primal_ray;
alpar@484
   222
    mutable std::vector<Value> _dual_ray;
alpar@484
   223
alpar@484
   224
    void _clear_temporals();
alpar@484
   225
alpar@484
   226
    SolveExitStatus convertStatus(int status);
alpar@484
   227
alpar@484
   228
  protected:
alpar@484
   229
alpar@484
   230
    virtual const char* _solverName() const;
alpar@484
   231
alpar@484
   232
    virtual SolveExitStatus _solve();
alpar@484
   233
    virtual Value _getPrimal(int i) const;
alpar@484
   234
    virtual Value _getDual(int i) const;
alpar@484
   235
    virtual Value _getPrimalValue() const;
alpar@484
   236
alpar@484
   237
    virtual VarStatus _getColStatus(int i) const;
alpar@484
   238
    virtual VarStatus _getRowStatus(int i) const;
alpar@484
   239
alpar@484
   240
    virtual Value _getPrimalRay(int i) const;
alpar@484
   241
    virtual Value _getDualRay(int i) const;
alpar@484
   242
alpar@484
   243
    virtual ProblemType _getPrimalType() const;
alpar@484
   244
    virtual ProblemType _getDualType() const;
alpar@484
   245
alpar@484
   246
  public:
alpar@484
   247
alpar@484
   248
    /// Solve with primal simplex method
alpar@484
   249
    SolveExitStatus solvePrimal();
alpar@484
   250
alpar@484
   251
    /// Solve with dual simplex method
alpar@484
   252
    SolveExitStatus solveDual();
alpar@484
   253
alpar@484
   254
    /// Solve with barrier method
alpar@484
   255
    SolveExitStatus solveBarrier();
alpar@484
   256
alpar@484
   257
  };
alpar@484
   258
alpar@484
   259
  /// \brief Interface for the CPLEX MIP solver
alpar@484
   260
  ///
alpar@484
   261
  /// This class implements an interface for the CPLEX MIP solver.
alpar@484
   262
  ///\ingroup lp_group
alpar@587
   263
  class CplexMip : public MipSolver, public CplexBase {
alpar@484
   264
  public:
alpar@484
   265
    /// \e
alpar@485
   266
    CplexMip();
alpar@484
   267
    /// \e
alpar@485
   268
    CplexMip(const CplexEnv&);
alpar@484
   269
    /// \e
alpar@485
   270
    CplexMip(const CplexMip&);
alpar@484
   271
    /// \e
alpar@485
   272
    virtual ~CplexMip();
alpar@484
   273
deba@598
   274
    /// \e
deba@598
   275
    virtual CplexMip* cloneSolver() const;
deba@598
   276
    /// \e
deba@598
   277
    virtual CplexMip* newSolver() const;
deba@598
   278
alpar@484
   279
  protected:
alpar@484
   280
alpar@484
   281
alpar@484
   282
    virtual const char* _solverName() const;
alpar@484
   283
alpar@484
   284
    virtual ColTypes _getColType(int col) const;
alpar@484
   285
    virtual void _setColType(int col, ColTypes col_type);
alpar@484
   286
alpar@484
   287
    virtual SolveExitStatus _solve();
alpar@484
   288
    virtual ProblemType _getType() const;
alpar@484
   289
    virtual Value _getSol(int i) const;
alpar@484
   290
    virtual Value _getSolValue() const;
alpar@484
   291
alpar@484
   292
  };
alpar@484
   293
alpar@484
   294
} //END OF NAMESPACE LEMON
alpar@484
   295
alpar@484
   296
#endif //LEMON_CPLEX_H
alpar@484
   297