[1254] | 1 | /* -*- C++ -*- |
---|
[1313] | 2 | * src/lemon/lp_skeleton.h |
---|
[1254] | 3 | * - Part of LEMON, a generic C++ optimization library |
---|
| 4 | * |
---|
| 5 | * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
---|
[1359] | 6 | * (Egervary Research Group on Combinatorial Optimization, EGRES). |
---|
[1254] | 7 | * |
---|
| 8 | * Permission to use, modify and distribute this software is granted |
---|
| 9 | * provided that this copyright notice appears in all copies. For |
---|
| 10 | * precise terms see the accompanying LICENSE file. |
---|
| 11 | * |
---|
| 12 | * This software is provided "AS IS" with no warranty of any kind, |
---|
| 13 | * express or implied, and with no claim as to its suitability for any |
---|
| 14 | * purpose. |
---|
| 15 | * |
---|
| 16 | */ |
---|
| 17 | |
---|
[1313] | 18 | #ifndef LEMON_LP_SKELETON |
---|
| 19 | #define LEMON_LP_SKELETON |
---|
[1254] | 20 | |
---|
[1356] | 21 | #include <lemon/lp_base.h> |
---|
[1254] | 22 | |
---|
| 23 | ///\file |
---|
| 24 | ///\brief A skeleton file to implement LP solver interfaces |
---|
| 25 | namespace lemon { |
---|
| 26 | |
---|
| 27 | ///A skeleton class to implement LP solver interfaces |
---|
[1313] | 28 | class LpSkeleton :public LpSolverBase { |
---|
[1273] | 29 | int col_num,row_num; |
---|
| 30 | |
---|
[1254] | 31 | protected: |
---|
[1364] | 32 | ///\e |
---|
| 33 | virtual LpSolverBase &_newLp(); |
---|
| 34 | ///\e |
---|
| 35 | virtual LpSolverBase &_copyLp(); |
---|
[1294] | 36 | /// \e |
---|
[1254] | 37 | virtual int _addCol(); |
---|
[1294] | 38 | /// \e |
---|
[1254] | 39 | virtual int _addRow(); |
---|
[1294] | 40 | /// \e |
---|
[1432] | 41 | virtual void _eraseCol(int i); |
---|
| 42 | /// \e |
---|
| 43 | virtual void _eraseRow(int i); |
---|
| 44 | /// \e |
---|
[1294] | 45 | |
---|
| 46 | /// \warning Arrays are indexed from 1 (datum at index 0 is ignored) |
---|
| 47 | /// |
---|
[1254] | 48 | virtual void _setRowCoeffs(int i, |
---|
| 49 | int length, |
---|
| 50 | int const * indices, |
---|
| 51 | Value const * values ); |
---|
[1294] | 52 | /// \e |
---|
| 53 | |
---|
| 54 | /// \warning Arrays are indexed from 1 (datum at index 0 is ignored) |
---|
| 55 | /// |
---|
[1254] | 56 | virtual void _setColCoeffs(int i, |
---|
| 57 | int length, |
---|
| 58 | int const * indices, |
---|
[1294] | 59 | Value const * values ); |
---|
| 60 | |
---|
[1431] | 61 | /// Set one element of the coefficient matrix |
---|
| 62 | virtual void _setCoeff(int row, int col, Value value); |
---|
[1294] | 63 | |
---|
| 64 | /// The lower bound of a variable (column) have to be given by an |
---|
| 65 | /// extended number of type Value, i.e. a finite number of type |
---|
| 66 | /// Value or -\ref INF. |
---|
[1254] | 67 | virtual void _setColLowerBound(int i, Value value); |
---|
[1294] | 68 | /// \e |
---|
| 69 | |
---|
| 70 | /// The upper bound of a variable (column) have to be given by an |
---|
| 71 | /// extended number of type Value, i.e. a finite number of type |
---|
| 72 | /// Value or \ref INF. |
---|
[1254] | 73 | virtual void _setColUpperBound(int i, Value value); |
---|
[1294] | 74 | /// \e |
---|
| 75 | |
---|
[1405] | 76 | // /// The lower bound of a linear expression (row) have to be given by an |
---|
| 77 | // /// extended number of type Value, i.e. a finite number of type |
---|
| 78 | // /// Value or -\ref INF. |
---|
| 79 | // virtual void _setRowLowerBound(int i, Value value); |
---|
| 80 | // /// \e |
---|
| 81 | |
---|
| 82 | // /// The upper bound of a linear expression (row) have to be given by an |
---|
| 83 | // /// extended number of type Value, i.e. a finite number of type |
---|
| 84 | // /// Value or \ref INF. |
---|
| 85 | // virtual void _setRowUpperBound(int i, Value value); |
---|
| 86 | |
---|
| 87 | /// The lower and upper bound of a linear expression (row) have to be |
---|
| 88 | /// given by an |
---|
[1294] | 89 | /// extended number of type Value, i.e. a finite number of type |
---|
[1405] | 90 | /// Value or +/-\ref INF. |
---|
[1389] | 91 | virtual void _setRowBounds(int i, Value lb, Value ub); |
---|
| 92 | /// \e |
---|
| 93 | |
---|
[1294] | 94 | |
---|
| 95 | /// \e |
---|
[1390] | 96 | virtual void _clearObj(); |
---|
| 97 | /// \e |
---|
[1254] | 98 | virtual void _setObjCoeff(int i, Value obj_coef); |
---|
[1294] | 99 | |
---|
| 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); |
---|
[1294] | 111 | ///\e |
---|
| 112 | |
---|
| 113 | ///\bug Wrong interface |
---|
| 114 | /// |
---|
[1312] | 115 | virtual Value _getPrimalValue(); |
---|
| 116 | ///\e |
---|
| 117 | |
---|
| 118 | ///\bug Wrong interface |
---|
| 119 | /// |
---|
| 120 | virtual SolutionStatus _getPrimalStatus(); |
---|
| 121 | |
---|
| 122 | ///\e |
---|
| 123 | virtual void _setMax(); |
---|
| 124 | ///\e |
---|
| 125 | virtual void _setMin(); |
---|
| 126 | |
---|
[1294] | 127 | |
---|
[1273] | 128 | public: |
---|
[1313] | 129 | LpSkeleton() : LpSolverBase(), col_num(0), row_num(0) {} |
---|
[1254] | 130 | }; |
---|
| 131 | |
---|
| 132 | } //namespace lemon |
---|
| 133 | |
---|
[1313] | 134 | #endif // LEMON_LP_SKELETON |
---|