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