COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/lp_skeleton.h @ 2324:18fc834761d9

Last change on this file since 2324:18fc834761d9 was 2324:18fc834761d9, checked in by athos, 17 years ago

Some query functions got implemented, but only for GLPK.

File size: 3.8 KB
RevLine 
[1254]1/* -*- C++ -*-
2 *
[1956]3 * This file is a part of LEMON, a generic C++ optimization library
4 *
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
[1359]7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
[1254]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
[1313]19#ifndef LEMON_LP_SKELETON
20#define LEMON_LP_SKELETON
[1254]21
[1356]22#include <lemon/lp_base.h>
[1254]23
24///\file
25///\brief A skeleton file to implement LP solver interfaces
26namespace lemon {
[1508]27
[1254]28  ///A skeleton class to implement LP solver interfaces
[1313]29  class LpSkeleton :public LpSolverBase {
[1273]30    int col_num,row_num;
31   
[1254]32  protected:
[1364]33    ///\e
34    virtual LpSolverBase &_newLp();
35    ///\e
36    virtual LpSolverBase &_copyLp();
[1294]37    /// \e
[1254]38    virtual int _addCol();
[1294]39    /// \e
[1254]40    virtual int _addRow();
[1294]41    /// \e
[1432]42    virtual void _eraseCol(int i);
43    /// \e
44    virtual void _eraseRow(int i);
45    /// \e
[2312]46    virtual void _getColName(int col, std::string & name);
[1895]47    /// \e
48    virtual void _setColName(int col, const std::string & name);
49
50    /// \e
[2312]51    virtual void _setRowCoeffs(int i, LpRowIterator b, LpRowIterator e);
[1294]52    /// \e
[2312]53    virtual void _setColCoeffs(int i, LpColIterator b, LpColIterator e);
[1294]54   
[1431]55    /// Set one element of the coefficient matrix
56    virtual void _setCoeff(int row, int col, Value value);
[1294]57
[2324]58    /// Get one element of the coefficient matrix
59    virtual Value _getCoeff(int row, int col);
60
[1294]61    /// The lower bound of a variable (column) have to be given by an
62    /// extended number of type Value, i.e. a finite number of type
63    /// Value or -\ref INF.
[1254]64    virtual void _setColLowerBound(int i, Value value);
[1294]65    /// \e
66
67    /// The upper bound of a variable (column) have to be given by an
68    /// extended number of type Value, i.e. a finite number of type
69    /// Value or \ref INF.
[1254]70    virtual void _setColUpperBound(int i, Value value);
[1294]71    /// \e
72
[1405]73//     /// The lower bound of a linear expression (row) have to be given by an
74//     /// extended number of type Value, i.e. a finite number of type
75//     /// Value or -\ref INF.
76//     virtual void _setRowLowerBound(int i, Value value);
77//     /// \e
78
79//     /// The upper bound of a linear expression (row) have to be given by an
80//     /// extended number of type Value, i.e. a finite number of type
81//     /// Value or \ref INF.
82//     virtual void _setRowUpperBound(int i, Value value);
83
84    /// The lower and upper bound of a linear expression (row) have to be
85    /// given by an
[1294]86    /// extended number of type Value, i.e. a finite number of type
[1405]87    /// Value or +/-\ref INF.
[1389]88    virtual void _setRowBounds(int i, Value lb, Value ub);
89    /// \e
90
[1294]91
92    /// \e
[1390]93    virtual void _clearObj();
94    /// \e
[1254]95    virtual void _setObjCoeff(int i, Value obj_coef);
[1294]96
[2324]97    /// \e
98    virtual Value _getObjCoeff(int i);
99
[1294]100    ///\e
101   
102    ///\bug Wrong interface
103    ///
[1303]104    virtual SolveExitStatus _solve();
[1294]105
106    ///\e
107
108    ///\bug Wrong interface
109    ///
[1293]110    virtual Value _getPrimal(int i);
[1796]111
112    ///\e
113
114    ///\bug Wrong interface
115    ///
116    virtual Value _getDual(int i);
117
[1294]118    ///\e
119
120    ///\bug Wrong interface
121    ///
[1312]122    virtual Value _getPrimalValue();
[1796]123
[1312]124    ///\e
125
126    ///\bug Wrong interface
127    ///
128    virtual SolutionStatus _getPrimalStatus();
129
[1460]130    ////e
131    virtual SolutionStatus _getDualStatus();
132
133
134    ///\e
135    virtual ProblemTypes _getProblemType();
136
[1312]137    ///\e
138    virtual void _setMax();
139    ///\e
140    virtual void _setMin();
[1843]141
142    ///\e
[2324]143    virtual bool _isMax();
144
145
146
147    ///\e
[1843]148    virtual bool _isBasicCol(int i);
149
[1312]150   
[1294]151
[1273]152  public:
[1313]153    LpSkeleton() : LpSolverBase(), col_num(0), row_num(0) {}
[1254]154  }; 
155
156} //namespace lemon
157
[1313]158#endif // LEMON_LP_SKELETON
Note: See TracBrowser for help on using the repository browser.