lemon/lp_glpk.h
author athos
Thu, 07 Dec 2006 16:10:54 +0000
changeset 2328 b4931ae52069
parent 2324 18fc834761d9
child 2364 3a5e67bd42d2
permissions -rw-r--r--
Query functions have been implemented for GLPK (CPLEX breaks at the moment, I guess): These functions include:
retrieving one element of the coeff. matrix
retrieving one element of the obj function
lower bd for a variable
upper bound for a variable
lower and upper bounds for a row (these can not be handled separately at the moment)
direction of the optimization (is_max() function)
athos@1261
     1
/* -*- C++ -*-
athos@1261
     2
 *
alpar@1956
     3
 * This file is a part of LEMON, a generic C++ optimization library
alpar@1956
     4
 *
alpar@1956
     5
 * Copyright (C) 2003-2006
alpar@1956
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@1359
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
athos@1261
     8
 *
athos@1261
     9
 * Permission to use, modify and distribute this software is granted
athos@1261
    10
 * provided that this copyright notice appears in all copies. For
athos@1261
    11
 * precise terms see the accompanying LICENSE file.
athos@1261
    12
 *
athos@1261
    13
 * This software is provided "AS IS" with no warranty of any kind,
athos@1261
    14
 * express or implied, and with no claim as to its suitability for any
athos@1261
    15
 * purpose.
athos@1261
    16
 *
athos@1261
    17
 */
athos@1261
    18
athos@1261
    19
#ifndef LEMON_LP_GLPK_H
athos@1261
    20
#define LEMON_LP_GLPK_H
athos@1261
    21
athos@1261
    22
///\file
athos@1261
    23
///\brief Header of the LEMON-GLPK lp solver interface.
alpar@1328
    24
///\ingroup gen_opt_group
athos@1261
    25
ladanyi@1356
    26
#include <lemon/lp_base.h>
athos@1261
    27
extern "C" {
alpar@1326
    28
#include <glpk.h>
athos@1261
    29
}
athos@1261
    30
athos@1261
    31
namespace lemon {
athos@1261
    32
athos@1261
    33
alpar@1398
    34
  /// \brief Interface for the GLPK LP solver
athos@1261
    35
  /// 
alpar@1398
    36
  /// This class implements an interface for the GLPK LP solver.
alpar@1328
    37
  ///\ingroup gen_opt_group
athos@2144
    38
  class LpGlpk : virtual public LpSolverBase {
alpar@1321
    39
  protected:
alpar@1321
    40
    LPX* lp;
alpar@1321
    41
    
athos@1261
    42
  public:
alpar@1321
    43
    
athos@1261
    44
    typedef LpSolverBase Parent;
athos@1261
    45
    
alpar@1321
    46
    LpGlpk();
alpar@2321
    47
    LpGlpk(const LpGlpk &);
alpar@1321
    48
    ~LpGlpk();
alpar@1321
    49
    
athos@1261
    50
  protected:
alpar@1364
    51
    virtual LpSolverBase &_newLp();
alpar@1364
    52
    virtual LpSolverBase &_copyLp();
alpar@1364
    53
athos@1261
    54
    virtual int _addCol();
athos@1261
    55
    virtual int _addRow();
athos@1432
    56
    virtual void _eraseCol(int i);
athos@1432
    57
    virtual void _eraseRow(int i);
alpar@1895
    58
    virtual void _getColName(int col,       std::string & name);
alpar@1895
    59
    virtual void _setColName(int col, const std::string & name);
deba@2312
    60
    virtual void _setRowCoeffs(int i, LpRowIterator b, LpRowIterator e);
deba@2312
    61
    virtual void _setColCoeffs(int i, LpColIterator b, LpColIterator e);
athos@1431
    62
    virtual void _setCoeff(int row, int col, Value value);
athos@2324
    63
    virtual Value _getCoeff(int row, int col);
athos@2324
    64
athos@1261
    65
    virtual void _setColLowerBound(int i, Value value);
athos@2328
    66
    virtual Value _getColLowerBound(int i);
athos@1261
    67
    virtual void _setColUpperBound(int i, Value value);
athos@2328
    68
    virtual Value _getColUpperBound(int i);
athos@2328
    69
athos@1405
    70
//     virtual void _setRowLowerBound(int i, Value value);
athos@1405
    71
//     virtual void _setRowUpperBound(int i, Value value);
athos@1379
    72
    virtual void _setRowBounds(int i, Value lower, Value upper);
athos@2328
    73
    virtual void _getRowBounds(int i, Value &lb, Value &ub);
athos@1261
    74
    virtual void _setObjCoeff(int i, Value obj_coef);
athos@2324
    75
    virtual Value _getObjCoeff(int i);
athos@1377
    76
    virtual void _clearObj();
athos@1377
    77
//     virtual void _setObj(int length,
athos@1377
    78
//                          int  const * indices, 
athos@1377
    79
//                          Value  const * values ) = 0;
athos@1376
    80
alpar@1263
    81
    ///\e
alpar@1263
    82
    
alpar@1321
    83
    ///\todo It should be clarified
alpar@1263
    84
    ///
alpar@1303
    85
    virtual SolveExitStatus _solve();
alpar@1293
    86
    virtual Value _getPrimal(int i);
marci@1787
    87
    virtual Value _getDual(int i);
alpar@1312
    88
    virtual Value _getPrimalValue();
marci@1840
    89
    virtual bool _isBasicCol(int i);
alpar@1312
    90
    ///\e
alpar@1312
    91
    
alpar@1321
    92
    ///\todo It should be clarified
alpar@1312
    93
    ///
alpar@1312
    94
    virtual SolutionStatus _getPrimalStatus();
athos@1460
    95
    virtual SolutionStatus _getDualStatus();
athos@1460
    96
    virtual ProblemTypes _getProblemType();
athos@1460
    97
alpar@1321
    98
    virtual void _setMax();
alpar@1321
    99
    virtual void _setMin();
athos@1261
   100
athos@2324
   101
    virtual bool _isMax();
athos@2324
   102
alpar@1321
   103
  public:
alpar@1321
   104
    ///Set the verbosity of the messages
alpar@1321
   105
alpar@1326
   106
    ///Set the verbosity of the messages
alpar@1326
   107
    ///
alpar@1321
   108
    ///\param m is the level of the messages output by the solver routines.
alpar@1321
   109
    ///The possible values are:
alpar@1321
   110
    ///- 0 --- no output (default value)
alpar@1321
   111
    ///- 1 --- error messages only
alpar@1321
   112
    ///- 2 --- normal output
alpar@1321
   113
    ///- 3 --- full output (includes informational messages)
alpar@1321
   114
    void messageLevel(int m);
alpar@1326
   115
    ///Turns on or off the presolver
alpar@1326
   116
alpar@1326
   117
    ///Turns on (\c b is \c true) or off (\c b is \c false) the presolver
alpar@1326
   118
    ///
alpar@1326
   119
    ///The presolver is off by default.
alpar@1326
   120
    void presolver(bool b);
alpar@2321
   121
alpar@2321
   122
    LPX *lpx() {return lp;}
athos@1261
   123
  };
athos@1261
   124
} //END OF NAMESPACE LEMON
athos@1261
   125
athos@1261
   126
#endif //LEMON_LP_GLPK_H
athos@1261
   127