alpar@461
|
1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*-
|
alpar@461
|
2 |
*
|
alpar@461
|
3 |
* This file is a part of LEMON, a generic C++ optimization library.
|
alpar@461
|
4 |
*
|
alpar@1092
|
5 |
* Copyright (C) 2003-2013
|
alpar@461
|
6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
|
alpar@461
|
7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES).
|
alpar@461
|
8 |
*
|
alpar@461
|
9 |
* Permission to use, modify and distribute this software is granted
|
alpar@461
|
10 |
* provided that this copyright notice appears in all copies. For
|
alpar@461
|
11 |
* precise terms see the accompanying LICENSE file.
|
alpar@461
|
12 |
*
|
alpar@461
|
13 |
* This software is provided "AS IS" with no warranty of any kind,
|
alpar@461
|
14 |
* express or implied, and with no claim as to its suitability for any
|
alpar@461
|
15 |
* purpose.
|
alpar@461
|
16 |
*
|
alpar@461
|
17 |
*/
|
alpar@461
|
18 |
|
alpar@461
|
19 |
///\file
|
alpar@461
|
20 |
///\brief Implementation of the LEMON GLPK LP and MIP solver interface.
|
alpar@461
|
21 |
|
alpar@461
|
22 |
#include <lemon/glpk.h>
|
alpar@461
|
23 |
#include <glpk.h>
|
alpar@461
|
24 |
|
alpar@461
|
25 |
#include <lemon/assert.h>
|
alpar@461
|
26 |
|
alpar@461
|
27 |
namespace lemon {
|
alpar@461
|
28 |
|
alpar@461
|
29 |
// GlpkBase members
|
alpar@461
|
30 |
|
alpar@461
|
31 |
GlpkBase::GlpkBase() : LpBase() {
|
alpar@461
|
32 |
lp = glp_create_prob();
|
alpar@461
|
33 |
glp_create_index(lp);
|
deba@576
|
34 |
messageLevel(MESSAGE_NOTHING);
|
alpar@461
|
35 |
}
|
alpar@461
|
36 |
|
alpar@461
|
37 |
GlpkBase::GlpkBase(const GlpkBase &other) : LpBase() {
|
alpar@461
|
38 |
lp = glp_create_prob();
|
alpar@461
|
39 |
glp_copy_prob(lp, other.lp, GLP_ON);
|
alpar@461
|
40 |
glp_create_index(lp);
|
ggab90@1130
|
41 |
_rows = other._rows;
|
ggab90@1130
|
42 |
_cols = other._cols;
|
deba@576
|
43 |
messageLevel(MESSAGE_NOTHING);
|
alpar@461
|
44 |
}
|
alpar@461
|
45 |
|
alpar@461
|
46 |
GlpkBase::~GlpkBase() {
|
alpar@461
|
47 |
glp_delete_prob(lp);
|
alpar@461
|
48 |
}
|
alpar@461
|
49 |
|
alpar@461
|
50 |
int GlpkBase::_addCol() {
|
alpar@461
|
51 |
int i = glp_add_cols(lp, 1);
|
alpar@461
|
52 |
glp_set_col_bnds(lp, i, GLP_FR, 0.0, 0.0);
|
alpar@461
|
53 |
return i;
|
alpar@461
|
54 |
}
|
alpar@461
|
55 |
|
alpar@461
|
56 |
int GlpkBase::_addRow() {
|
alpar@461
|
57 |
int i = glp_add_rows(lp, 1);
|
alpar@461
|
58 |
glp_set_row_bnds(lp, i, GLP_FR, 0.0, 0.0);
|
alpar@461
|
59 |
return i;
|
alpar@461
|
60 |
}
|
alpar@461
|
61 |
|
alpar@877
|
62 |
int GlpkBase::_addRow(Value lo, ExprIterator b,
|
deba@746
|
63 |
ExprIterator e, Value up) {
|
deba@746
|
64 |
int i = glp_add_rows(lp, 1);
|
deba@746
|
65 |
|
deba@746
|
66 |
if (lo == -INF) {
|
deba@746
|
67 |
if (up == INF) {
|
deba@746
|
68 |
glp_set_row_bnds(lp, i, GLP_FR, lo, up);
|
deba@746
|
69 |
} else {
|
deba@746
|
70 |
glp_set_row_bnds(lp, i, GLP_UP, lo, up);
|
alpar@877
|
71 |
}
|
deba@746
|
72 |
} else {
|
deba@746
|
73 |
if (up == INF) {
|
deba@746
|
74 |
glp_set_row_bnds(lp, i, GLP_LO, lo, up);
|
alpar@877
|
75 |
} else if (lo != up) {
|
deba@746
|
76 |
glp_set_row_bnds(lp, i, GLP_DB, lo, up);
|
deba@746
|
77 |
} else {
|
deba@746
|
78 |
glp_set_row_bnds(lp, i, GLP_FX, lo, up);
|
deba@746
|
79 |
}
|
deba@746
|
80 |
}
|
deba@746
|
81 |
|
deba@746
|
82 |
std::vector<int> indexes;
|
deba@746
|
83 |
std::vector<Value> values;
|
deba@746
|
84 |
|
deba@746
|
85 |
indexes.push_back(0);
|
deba@746
|
86 |
values.push_back(0);
|
deba@746
|
87 |
|
deba@746
|
88 |
for(ExprIterator it = b; it != e; ++it) {
|
deba@746
|
89 |
indexes.push_back(it->first);
|
deba@746
|
90 |
values.push_back(it->second);
|
deba@746
|
91 |
}
|
deba@746
|
92 |
|
deba@746
|
93 |
glp_set_mat_row(lp, i, values.size() - 1,
|
deba@746
|
94 |
&indexes.front(), &values.front());
|
deba@746
|
95 |
return i;
|
deba@746
|
96 |
}
|
deba@746
|
97 |
|
alpar@461
|
98 |
void GlpkBase::_eraseCol(int i) {
|
alpar@461
|
99 |
int ca[2];
|
alpar@461
|
100 |
ca[1] = i;
|
alpar@461
|
101 |
glp_del_cols(lp, 1, ca);
|
alpar@461
|
102 |
}
|
alpar@461
|
103 |
|
alpar@461
|
104 |
void GlpkBase::_eraseRow(int i) {
|
alpar@461
|
105 |
int ra[2];
|
alpar@461
|
106 |
ra[1] = i;
|
alpar@461
|
107 |
glp_del_rows(lp, 1, ra);
|
alpar@461
|
108 |
}
|
alpar@461
|
109 |
|
alpar@461
|
110 |
void GlpkBase::_eraseColId(int i) {
|
ggab90@1130
|
111 |
_cols.eraseIndex(i);
|
ggab90@1130
|
112 |
_cols.shiftIndices(i);
|
alpar@461
|
113 |
}
|
alpar@461
|
114 |
|
alpar@461
|
115 |
void GlpkBase::_eraseRowId(int i) {
|
ggab90@1130
|
116 |
_rows.eraseIndex(i);
|
ggab90@1130
|
117 |
_rows.shiftIndices(i);
|
alpar@461
|
118 |
}
|
alpar@461
|
119 |
|
alpar@461
|
120 |
void GlpkBase::_getColName(int c, std::string& name) const {
|
alpar@461
|
121 |
const char *str = glp_get_col_name(lp, c);
|
alpar@461
|
122 |
if (str) name = str;
|
alpar@461
|
123 |
else name.clear();
|
alpar@461
|
124 |
}
|
alpar@461
|
125 |
|
alpar@461
|
126 |
void GlpkBase::_setColName(int c, const std::string & name) {
|
alpar@461
|
127 |
glp_set_col_name(lp, c, const_cast<char*>(name.c_str()));
|
alpar@461
|
128 |
|
alpar@461
|
129 |
}
|
alpar@461
|
130 |
|
alpar@461
|
131 |
int GlpkBase::_colByName(const std::string& name) const {
|
alpar@461
|
132 |
int k = glp_find_col(lp, const_cast<char*>(name.c_str()));
|
alpar@461
|
133 |
return k > 0 ? k : -1;
|
alpar@461
|
134 |
}
|
alpar@461
|
135 |
|
alpar@461
|
136 |
void GlpkBase::_getRowName(int r, std::string& name) const {
|
alpar@461
|
137 |
const char *str = glp_get_row_name(lp, r);
|
alpar@461
|
138 |
if (str) name = str;
|
alpar@461
|
139 |
else name.clear();
|
alpar@461
|
140 |
}
|
alpar@461
|
141 |
|
alpar@461
|
142 |
void GlpkBase::_setRowName(int r, const std::string & name) {
|
alpar@461
|
143 |
glp_set_row_name(lp, r, const_cast<char*>(name.c_str()));
|
alpar@461
|
144 |
|
alpar@461
|
145 |
}
|
alpar@461
|
146 |
|
alpar@461
|
147 |
int GlpkBase::_rowByName(const std::string& name) const {
|
alpar@461
|
148 |
int k = glp_find_row(lp, const_cast<char*>(name.c_str()));
|
alpar@461
|
149 |
return k > 0 ? k : -1;
|
alpar@461
|
150 |
}
|
alpar@461
|
151 |
|
alpar@461
|
152 |
void GlpkBase::_setRowCoeffs(int i, ExprIterator b, ExprIterator e) {
|
alpar@461
|
153 |
std::vector<int> indexes;
|
alpar@461
|
154 |
std::vector<Value> values;
|
alpar@461
|
155 |
|
alpar@461
|
156 |
indexes.push_back(0);
|
alpar@461
|
157 |
values.push_back(0);
|
alpar@461
|
158 |
|
alpar@461
|
159 |
for(ExprIterator it = b; it != e; ++it) {
|
alpar@461
|
160 |
indexes.push_back(it->first);
|
alpar@461
|
161 |
values.push_back(it->second);
|
alpar@461
|
162 |
}
|
alpar@461
|
163 |
|
alpar@461
|
164 |
glp_set_mat_row(lp, i, values.size() - 1,
|
alpar@461
|
165 |
&indexes.front(), &values.front());
|
alpar@461
|
166 |
}
|
alpar@461
|
167 |
|
alpar@461
|
168 |
void GlpkBase::_getRowCoeffs(int ix, InsertIterator b) const {
|
alpar@461
|
169 |
int length = glp_get_mat_row(lp, ix, 0, 0);
|
alpar@461
|
170 |
|
alpar@461
|
171 |
std::vector<int> indexes(length + 1);
|
alpar@461
|
172 |
std::vector<Value> values(length + 1);
|
alpar@461
|
173 |
|
alpar@461
|
174 |
glp_get_mat_row(lp, ix, &indexes.front(), &values.front());
|
alpar@461
|
175 |
|
alpar@461
|
176 |
for (int i = 1; i <= length; ++i) {
|
alpar@461
|
177 |
*b = std::make_pair(indexes[i], values[i]);
|
alpar@461
|
178 |
++b;
|
alpar@461
|
179 |
}
|
alpar@461
|
180 |
}
|
alpar@461
|
181 |
|
alpar@461
|
182 |
void GlpkBase::_setColCoeffs(int ix, ExprIterator b,
|
alpar@461
|
183 |
ExprIterator e) {
|
alpar@461
|
184 |
|
alpar@461
|
185 |
std::vector<int> indexes;
|
alpar@461
|
186 |
std::vector<Value> values;
|
alpar@461
|
187 |
|
alpar@461
|
188 |
indexes.push_back(0);
|
alpar@461
|
189 |
values.push_back(0);
|
alpar@461
|
190 |
|
alpar@461
|
191 |
for(ExprIterator it = b; it != e; ++it) {
|
alpar@461
|
192 |
indexes.push_back(it->first);
|
alpar@461
|
193 |
values.push_back(it->second);
|
alpar@461
|
194 |
}
|
alpar@461
|
195 |
|
alpar@461
|
196 |
glp_set_mat_col(lp, ix, values.size() - 1,
|
alpar@461
|
197 |
&indexes.front(), &values.front());
|
alpar@461
|
198 |
}
|
alpar@461
|
199 |
|
alpar@461
|
200 |
void GlpkBase::_getColCoeffs(int ix, InsertIterator b) const {
|
alpar@461
|
201 |
int length = glp_get_mat_col(lp, ix, 0, 0);
|
alpar@461
|
202 |
|
alpar@461
|
203 |
std::vector<int> indexes(length + 1);
|
alpar@461
|
204 |
std::vector<Value> values(length + 1);
|
alpar@461
|
205 |
|
alpar@461
|
206 |
glp_get_mat_col(lp, ix, &indexes.front(), &values.front());
|
alpar@461
|
207 |
|
alpar@461
|
208 |
for (int i = 1; i <= length; ++i) {
|
alpar@461
|
209 |
*b = std::make_pair(indexes[i], values[i]);
|
alpar@461
|
210 |
++b;
|
alpar@461
|
211 |
}
|
alpar@461
|
212 |
}
|
alpar@461
|
213 |
|
alpar@461
|
214 |
void GlpkBase::_setCoeff(int ix, int jx, Value value) {
|
alpar@461
|
215 |
|
alpar@461
|
216 |
if (glp_get_num_cols(lp) < glp_get_num_rows(lp)) {
|
alpar@461
|
217 |
|
alpar@461
|
218 |
int length = glp_get_mat_row(lp, ix, 0, 0);
|
alpar@461
|
219 |
|
alpar@461
|
220 |
std::vector<int> indexes(length + 2);
|
alpar@461
|
221 |
std::vector<Value> values(length + 2);
|
alpar@461
|
222 |
|
alpar@461
|
223 |
glp_get_mat_row(lp, ix, &indexes.front(), &values.front());
|
alpar@461
|
224 |
|
alpar@461
|
225 |
//The following code does not suppose that the elements of the
|
alpar@461
|
226 |
//array indexes are sorted
|
alpar@461
|
227 |
bool found = false;
|
alpar@461
|
228 |
for (int i = 1; i <= length; ++i) {
|
alpar@461
|
229 |
if (indexes[i] == jx) {
|
alpar@461
|
230 |
found = true;
|
alpar@461
|
231 |
values[i] = value;
|
alpar@461
|
232 |
break;
|
alpar@461
|
233 |
}
|
alpar@461
|
234 |
}
|
alpar@461
|
235 |
if (!found) {
|
alpar@461
|
236 |
++length;
|
alpar@461
|
237 |
indexes[length] = jx;
|
alpar@461
|
238 |
values[length] = value;
|
alpar@461
|
239 |
}
|
alpar@461
|
240 |
|
alpar@461
|
241 |
glp_set_mat_row(lp, ix, length, &indexes.front(), &values.front());
|
alpar@461
|
242 |
|
alpar@461
|
243 |
} else {
|
alpar@461
|
244 |
|
alpar@461
|
245 |
int length = glp_get_mat_col(lp, jx, 0, 0);
|
alpar@461
|
246 |
|
alpar@461
|
247 |
std::vector<int> indexes(length + 2);
|
alpar@461
|
248 |
std::vector<Value> values(length + 2);
|
alpar@461
|
249 |
|
alpar@461
|
250 |
glp_get_mat_col(lp, jx, &indexes.front(), &values.front());
|
alpar@461
|
251 |
|
alpar@461
|
252 |
//The following code does not suppose that the elements of the
|
alpar@461
|
253 |
//array indexes are sorted
|
alpar@461
|
254 |
bool found = false;
|
alpar@461
|
255 |
for (int i = 1; i <= length; ++i) {
|
alpar@461
|
256 |
if (indexes[i] == ix) {
|
alpar@461
|
257 |
found = true;
|
alpar@461
|
258 |
values[i] = value;
|
alpar@461
|
259 |
break;
|
alpar@461
|
260 |
}
|
alpar@461
|
261 |
}
|
alpar@461
|
262 |
if (!found) {
|
alpar@461
|
263 |
++length;
|
alpar@461
|
264 |
indexes[length] = ix;
|
alpar@461
|
265 |
values[length] = value;
|
alpar@461
|
266 |
}
|
alpar@461
|
267 |
|
alpar@461
|
268 |
glp_set_mat_col(lp, jx, length, &indexes.front(), &values.front());
|
alpar@461
|
269 |
}
|
alpar@461
|
270 |
|
alpar@461
|
271 |
}
|
alpar@461
|
272 |
|
alpar@461
|
273 |
GlpkBase::Value GlpkBase::_getCoeff(int ix, int jx) const {
|
alpar@461
|
274 |
|
alpar@461
|
275 |
int length = glp_get_mat_row(lp, ix, 0, 0);
|
alpar@461
|
276 |
|
alpar@461
|
277 |
std::vector<int> indexes(length + 1);
|
alpar@461
|
278 |
std::vector<Value> values(length + 1);
|
alpar@461
|
279 |
|
alpar@461
|
280 |
glp_get_mat_row(lp, ix, &indexes.front(), &values.front());
|
alpar@461
|
281 |
|
alpar@461
|
282 |
for (int i = 1; i <= length; ++i) {
|
alpar@461
|
283 |
if (indexes[i] == jx) {
|
alpar@461
|
284 |
return values[i];
|
alpar@461
|
285 |
}
|
alpar@461
|
286 |
}
|
alpar@461
|
287 |
|
alpar@461
|
288 |
return 0;
|
alpar@461
|
289 |
}
|
alpar@461
|
290 |
|
alpar@461
|
291 |
void GlpkBase::_setColLowerBound(int i, Value lo) {
|
alpar@461
|
292 |
LEMON_ASSERT(lo != INF, "Invalid bound");
|
alpar@461
|
293 |
|
alpar@461
|
294 |
int b = glp_get_col_type(lp, i);
|
alpar@461
|
295 |
double up = glp_get_col_ub(lp, i);
|
alpar@461
|
296 |
if (lo == -INF) {
|
alpar@461
|
297 |
switch (b) {
|
alpar@461
|
298 |
case GLP_FR:
|
alpar@461
|
299 |
case GLP_LO:
|
alpar@461
|
300 |
glp_set_col_bnds(lp, i, GLP_FR, lo, up);
|
alpar@461
|
301 |
break;
|
alpar@461
|
302 |
case GLP_UP:
|
alpar@461
|
303 |
break;
|
alpar@461
|
304 |
case GLP_DB:
|
alpar@461
|
305 |
case GLP_FX:
|
alpar@461
|
306 |
glp_set_col_bnds(lp, i, GLP_UP, lo, up);
|
alpar@461
|
307 |
break;
|
alpar@461
|
308 |
default:
|
alpar@461
|
309 |
break;
|
alpar@461
|
310 |
}
|
alpar@461
|
311 |
} else {
|
alpar@461
|
312 |
switch (b) {
|
alpar@461
|
313 |
case GLP_FR:
|
alpar@461
|
314 |
case GLP_LO:
|
alpar@461
|
315 |
glp_set_col_bnds(lp, i, GLP_LO, lo, up);
|
alpar@461
|
316 |
break;
|
alpar@461
|
317 |
case GLP_UP:
|
alpar@461
|
318 |
case GLP_DB:
|
alpar@461
|
319 |
case GLP_FX:
|
alpar@461
|
320 |
if (lo == up)
|
alpar@461
|
321 |
glp_set_col_bnds(lp, i, GLP_FX, lo, up);
|
alpar@461
|
322 |
else
|
alpar@461
|
323 |
glp_set_col_bnds(lp, i, GLP_DB, lo, up);
|
alpar@461
|
324 |
break;
|
alpar@461
|
325 |
default:
|
alpar@461
|
326 |
break;
|
alpar@461
|
327 |
}
|
alpar@461
|
328 |
}
|
alpar@461
|
329 |
}
|
alpar@461
|
330 |
|
alpar@461
|
331 |
GlpkBase::Value GlpkBase::_getColLowerBound(int i) const {
|
alpar@461
|
332 |
int b = glp_get_col_type(lp, i);
|
alpar@461
|
333 |
switch (b) {
|
alpar@461
|
334 |
case GLP_LO:
|
alpar@461
|
335 |
case GLP_DB:
|
alpar@461
|
336 |
case GLP_FX:
|
alpar@461
|
337 |
return glp_get_col_lb(lp, i);
|
alpar@461
|
338 |
default:
|
alpar@461
|
339 |
return -INF;
|
alpar@461
|
340 |
}
|
alpar@461
|
341 |
}
|
alpar@461
|
342 |
|
alpar@461
|
343 |
void GlpkBase::_setColUpperBound(int i, Value up) {
|
alpar@461
|
344 |
LEMON_ASSERT(up != -INF, "Invalid bound");
|
alpar@461
|
345 |
|
alpar@461
|
346 |
int b = glp_get_col_type(lp, i);
|
alpar@461
|
347 |
double lo = glp_get_col_lb(lp, i);
|
alpar@461
|
348 |
if (up == INF) {
|
alpar@461
|
349 |
switch (b) {
|
alpar@461
|
350 |
case GLP_FR:
|
alpar@461
|
351 |
case GLP_LO:
|
alpar@461
|
352 |
break;
|
alpar@461
|
353 |
case GLP_UP:
|
alpar@461
|
354 |
glp_set_col_bnds(lp, i, GLP_FR, lo, up);
|
alpar@461
|
355 |
break;
|
alpar@461
|
356 |
case GLP_DB:
|
alpar@461
|
357 |
case GLP_FX:
|
alpar@461
|
358 |
glp_set_col_bnds(lp, i, GLP_LO, lo, up);
|
alpar@461
|
359 |
break;
|
alpar@461
|
360 |
default:
|
alpar@461
|
361 |
break;
|
alpar@461
|
362 |
}
|
alpar@461
|
363 |
} else {
|
alpar@461
|
364 |
switch (b) {
|
alpar@461
|
365 |
case GLP_FR:
|
alpar@461
|
366 |
glp_set_col_bnds(lp, i, GLP_UP, lo, up);
|
alpar@461
|
367 |
break;
|
alpar@461
|
368 |
case GLP_UP:
|
alpar@461
|
369 |
glp_set_col_bnds(lp, i, GLP_UP, lo, up);
|
alpar@461
|
370 |
break;
|
alpar@461
|
371 |
case GLP_LO:
|
alpar@461
|
372 |
case GLP_DB:
|
alpar@461
|
373 |
case GLP_FX:
|
alpar@461
|
374 |
if (lo == up)
|
alpar@461
|
375 |
glp_set_col_bnds(lp, i, GLP_FX, lo, up);
|
alpar@461
|
376 |
else
|
alpar@461
|
377 |
glp_set_col_bnds(lp, i, GLP_DB, lo, up);
|
alpar@461
|
378 |
break;
|
alpar@461
|
379 |
default:
|
alpar@461
|
380 |
break;
|
alpar@461
|
381 |
}
|
alpar@461
|
382 |
}
|
alpar@461
|
383 |
|
alpar@461
|
384 |
}
|
alpar@461
|
385 |
|
alpar@461
|
386 |
GlpkBase::Value GlpkBase::_getColUpperBound(int i) const {
|
alpar@461
|
387 |
int b = glp_get_col_type(lp, i);
|
alpar@461
|
388 |
switch (b) {
|
alpar@461
|
389 |
case GLP_UP:
|
alpar@461
|
390 |
case GLP_DB:
|
alpar@461
|
391 |
case GLP_FX:
|
alpar@461
|
392 |
return glp_get_col_ub(lp, i);
|
alpar@461
|
393 |
default:
|
alpar@461
|
394 |
return INF;
|
alpar@461
|
395 |
}
|
alpar@461
|
396 |
}
|
alpar@461
|
397 |
|
alpar@461
|
398 |
void GlpkBase::_setRowLowerBound(int i, Value lo) {
|
alpar@461
|
399 |
LEMON_ASSERT(lo != INF, "Invalid bound");
|
alpar@461
|
400 |
|
alpar@461
|
401 |
int b = glp_get_row_type(lp, i);
|
alpar@461
|
402 |
double up = glp_get_row_ub(lp, i);
|
alpar@461
|
403 |
if (lo == -INF) {
|
alpar@461
|
404 |
switch (b) {
|
alpar@461
|
405 |
case GLP_FR:
|
alpar@461
|
406 |
case GLP_LO:
|
alpar@461
|
407 |
glp_set_row_bnds(lp, i, GLP_FR, lo, up);
|
alpar@461
|
408 |
break;
|
alpar@461
|
409 |
case GLP_UP:
|
alpar@461
|
410 |
break;
|
alpar@461
|
411 |
case GLP_DB:
|
alpar@461
|
412 |
case GLP_FX:
|
alpar@461
|
413 |
glp_set_row_bnds(lp, i, GLP_UP, lo, up);
|
alpar@461
|
414 |
break;
|
alpar@461
|
415 |
default:
|
alpar@461
|
416 |
break;
|
alpar@461
|
417 |
}
|
alpar@461
|
418 |
} else {
|
alpar@461
|
419 |
switch (b) {
|
alpar@461
|
420 |
case GLP_FR:
|
alpar@461
|
421 |
case GLP_LO:
|
alpar@461
|
422 |
glp_set_row_bnds(lp, i, GLP_LO, lo, up);
|
alpar@461
|
423 |
break;
|
alpar@461
|
424 |
case GLP_UP:
|
alpar@461
|
425 |
case GLP_DB:
|
alpar@461
|
426 |
case GLP_FX:
|
alpar@461
|
427 |
if (lo == up)
|
alpar@461
|
428 |
glp_set_row_bnds(lp, i, GLP_FX, lo, up);
|
alpar@461
|
429 |
else
|
alpar@461
|
430 |
glp_set_row_bnds(lp, i, GLP_DB, lo, up);
|
alpar@461
|
431 |
break;
|
alpar@461
|
432 |
default:
|
alpar@461
|
433 |
break;
|
alpar@461
|
434 |
}
|
alpar@461
|
435 |
}
|
alpar@461
|
436 |
|
alpar@461
|
437 |
}
|
alpar@461
|
438 |
|
alpar@461
|
439 |
GlpkBase::Value GlpkBase::_getRowLowerBound(int i) const {
|
alpar@461
|
440 |
int b = glp_get_row_type(lp, i);
|
alpar@461
|
441 |
switch (b) {
|
alpar@461
|
442 |
case GLP_LO:
|
alpar@461
|
443 |
case GLP_DB:
|
alpar@461
|
444 |
case GLP_FX:
|
alpar@461
|
445 |
return glp_get_row_lb(lp, i);
|
alpar@461
|
446 |
default:
|
alpar@461
|
447 |
return -INF;
|
alpar@461
|
448 |
}
|
alpar@461
|
449 |
}
|
alpar@461
|
450 |
|
alpar@461
|
451 |
void GlpkBase::_setRowUpperBound(int i, Value up) {
|
alpar@461
|
452 |
LEMON_ASSERT(up != -INF, "Invalid bound");
|
alpar@461
|
453 |
|
alpar@461
|
454 |
int b = glp_get_row_type(lp, i);
|
alpar@461
|
455 |
double lo = glp_get_row_lb(lp, i);
|
alpar@461
|
456 |
if (up == INF) {
|
alpar@461
|
457 |
switch (b) {
|
alpar@461
|
458 |
case GLP_FR:
|
alpar@461
|
459 |
case GLP_LO:
|
alpar@461
|
460 |
break;
|
alpar@461
|
461 |
case GLP_UP:
|
alpar@461
|
462 |
glp_set_row_bnds(lp, i, GLP_FR, lo, up);
|
alpar@461
|
463 |
break;
|
alpar@461
|
464 |
case GLP_DB:
|
alpar@461
|
465 |
case GLP_FX:
|
alpar@461
|
466 |
glp_set_row_bnds(lp, i, GLP_LO, lo, up);
|
alpar@461
|
467 |
break;
|
alpar@461
|
468 |
default:
|
alpar@461
|
469 |
break;
|
alpar@461
|
470 |
}
|
alpar@461
|
471 |
} else {
|
alpar@461
|
472 |
switch (b) {
|
alpar@461
|
473 |
case GLP_FR:
|
alpar@461
|
474 |
glp_set_row_bnds(lp, i, GLP_UP, lo, up);
|
alpar@461
|
475 |
break;
|
alpar@461
|
476 |
case GLP_UP:
|
alpar@461
|
477 |
glp_set_row_bnds(lp, i, GLP_UP, lo, up);
|
alpar@461
|
478 |
break;
|
alpar@461
|
479 |
case GLP_LO:
|
alpar@461
|
480 |
case GLP_DB:
|
alpar@461
|
481 |
case GLP_FX:
|
alpar@461
|
482 |
if (lo == up)
|
alpar@461
|
483 |
glp_set_row_bnds(lp, i, GLP_FX, lo, up);
|
alpar@461
|
484 |
else
|
alpar@461
|
485 |
glp_set_row_bnds(lp, i, GLP_DB, lo, up);
|
alpar@461
|
486 |
break;
|
alpar@461
|
487 |
default:
|
alpar@461
|
488 |
break;
|
alpar@461
|
489 |
}
|
alpar@461
|
490 |
}
|
alpar@461
|
491 |
}
|
alpar@461
|
492 |
|
alpar@461
|
493 |
GlpkBase::Value GlpkBase::_getRowUpperBound(int i) const {
|
alpar@461
|
494 |
int b = glp_get_row_type(lp, i);
|
alpar@461
|
495 |
switch (b) {
|
alpar@461
|
496 |
case GLP_UP:
|
alpar@461
|
497 |
case GLP_DB:
|
alpar@461
|
498 |
case GLP_FX:
|
alpar@461
|
499 |
return glp_get_row_ub(lp, i);
|
alpar@461
|
500 |
default:
|
alpar@461
|
501 |
return INF;
|
alpar@461
|
502 |
}
|
alpar@461
|
503 |
}
|
alpar@461
|
504 |
|
alpar@461
|
505 |
void GlpkBase::_setObjCoeffs(ExprIterator b, ExprIterator e) {
|
alpar@461
|
506 |
for (int i = 1; i <= glp_get_num_cols(lp); ++i) {
|
alpar@461
|
507 |
glp_set_obj_coef(lp, i, 0.0);
|
alpar@461
|
508 |
}
|
alpar@461
|
509 |
for (ExprIterator it = b; it != e; ++it) {
|
alpar@461
|
510 |
glp_set_obj_coef(lp, it->first, it->second);
|
alpar@461
|
511 |
}
|
alpar@461
|
512 |
}
|
alpar@461
|
513 |
|
alpar@461
|
514 |
void GlpkBase::_getObjCoeffs(InsertIterator b) const {
|
alpar@461
|
515 |
for (int i = 1; i <= glp_get_num_cols(lp); ++i) {
|
alpar@461
|
516 |
Value val = glp_get_obj_coef(lp, i);
|
alpar@461
|
517 |
if (val != 0.0) {
|
alpar@461
|
518 |
*b = std::make_pair(i, val);
|
alpar@461
|
519 |
++b;
|
alpar@461
|
520 |
}
|
alpar@461
|
521 |
}
|
alpar@461
|
522 |
}
|
alpar@461
|
523 |
|
alpar@461
|
524 |
void GlpkBase::_setObjCoeff(int i, Value obj_coef) {
|
alpar@461
|
525 |
//i = 0 means the constant term (shift)
|
alpar@461
|
526 |
glp_set_obj_coef(lp, i, obj_coef);
|
alpar@461
|
527 |
}
|
alpar@461
|
528 |
|
alpar@461
|
529 |
GlpkBase::Value GlpkBase::_getObjCoeff(int i) const {
|
alpar@461
|
530 |
//i = 0 means the constant term (shift)
|
alpar@461
|
531 |
return glp_get_obj_coef(lp, i);
|
alpar@461
|
532 |
}
|
alpar@461
|
533 |
|
alpar@461
|
534 |
void GlpkBase::_setSense(GlpkBase::Sense sense) {
|
alpar@461
|
535 |
switch (sense) {
|
alpar@461
|
536 |
case MIN:
|
alpar@461
|
537 |
glp_set_obj_dir(lp, GLP_MIN);
|
alpar@461
|
538 |
break;
|
alpar@461
|
539 |
case MAX:
|
alpar@461
|
540 |
glp_set_obj_dir(lp, GLP_MAX);
|
alpar@461
|
541 |
break;
|
alpar@461
|
542 |
}
|
alpar@461
|
543 |
}
|
alpar@461
|
544 |
|
alpar@461
|
545 |
GlpkBase::Sense GlpkBase::_getSense() const {
|
alpar@461
|
546 |
switch(glp_get_obj_dir(lp)) {
|
alpar@461
|
547 |
case GLP_MIN:
|
alpar@461
|
548 |
return MIN;
|
alpar@461
|
549 |
case GLP_MAX:
|
alpar@461
|
550 |
return MAX;
|
alpar@461
|
551 |
default:
|
alpar@461
|
552 |
LEMON_ASSERT(false, "Wrong sense");
|
alpar@461
|
553 |
return GlpkBase::Sense();
|
alpar@461
|
554 |
}
|
alpar@461
|
555 |
}
|
alpar@461
|
556 |
|
alpar@461
|
557 |
void GlpkBase::_clear() {
|
alpar@461
|
558 |
glp_erase_prob(lp);
|
alpar@461
|
559 |
}
|
alpar@461
|
560 |
|
deba@537
|
561 |
void GlpkBase::freeEnv() {
|
deba@537
|
562 |
glp_free_env();
|
deba@537
|
563 |
}
|
deba@537
|
564 |
|
deba@576
|
565 |
void GlpkBase::_messageLevel(MessageLevel level) {
|
deba@576
|
566 |
switch (level) {
|
deba@576
|
567 |
case MESSAGE_NOTHING:
|
deba@576
|
568 |
_message_level = GLP_MSG_OFF;
|
deba@576
|
569 |
break;
|
deba@576
|
570 |
case MESSAGE_ERROR:
|
deba@576
|
571 |
_message_level = GLP_MSG_ERR;
|
deba@576
|
572 |
break;
|
deba@576
|
573 |
case MESSAGE_WARNING:
|
deba@576
|
574 |
_message_level = GLP_MSG_ERR;
|
deba@576
|
575 |
break;
|
deba@576
|
576 |
case MESSAGE_NORMAL:
|
deba@576
|
577 |
_message_level = GLP_MSG_ON;
|
deba@576
|
578 |
break;
|
deba@576
|
579 |
case MESSAGE_VERBOSE:
|
deba@576
|
580 |
_message_level = GLP_MSG_ALL;
|
deba@576
|
581 |
break;
|
deba@576
|
582 |
}
|
deba@576
|
583 |
}
|
deba@576
|
584 |
|
alpar@1063
|
585 |
void GlpkBase::_write(std::string file, std::string format) const
|
alpar@1063
|
586 |
{
|
alpar@1063
|
587 |
if(format == "MPS")
|
alpar@1063
|
588 |
glp_write_mps(lp, GLP_MPS_FILE, 0, file.c_str());
|
alpar@1063
|
589 |
else if(format == "LP")
|
alpar@1063
|
590 |
glp_write_lp(lp, 0, file.c_str());
|
alpar@1063
|
591 |
else throw UnsupportedFormatError(format);
|
alpar@1063
|
592 |
}
|
alpar@1063
|
593 |
|
deba@538
|
594 |
GlpkBase::FreeEnvHelper GlpkBase::freeEnvHelper;
|
deba@538
|
595 |
|
alpar@462
|
596 |
// GlpkLp members
|
alpar@461
|
597 |
|
alpar@462
|
598 |
GlpkLp::GlpkLp()
|
deba@551
|
599 |
: LpBase(), LpSolver(), GlpkBase() {
|
deba@565
|
600 |
presolver(false);
|
alpar@461
|
601 |
}
|
alpar@461
|
602 |
|
alpar@462
|
603 |
GlpkLp::GlpkLp(const GlpkLp& other)
|
deba@551
|
604 |
: LpBase(other), LpSolver(other), GlpkBase(other) {
|
deba@565
|
605 |
presolver(false);
|
alpar@461
|
606 |
}
|
alpar@461
|
607 |
|
alpar@540
|
608 |
GlpkLp* GlpkLp::newSolver() const { return new GlpkLp; }
|
alpar@540
|
609 |
GlpkLp* GlpkLp::cloneSolver() const { return new GlpkLp(*this); }
|
alpar@461
|
610 |
|
alpar@462
|
611 |
const char* GlpkLp::_solverName() const { return "GlpkLp"; }
|
alpar@461
|
612 |
|
alpar@462
|
613 |
void GlpkLp::_clear_temporals() {
|
alpar@461
|
614 |
_primal_ray.clear();
|
alpar@461
|
615 |
_dual_ray.clear();
|
alpar@461
|
616 |
}
|
alpar@461
|
617 |
|
alpar@462
|
618 |
GlpkLp::SolveExitStatus GlpkLp::_solve() {
|
alpar@461
|
619 |
return solvePrimal();
|
alpar@461
|
620 |
}
|
alpar@461
|
621 |
|
alpar@462
|
622 |
GlpkLp::SolveExitStatus GlpkLp::solvePrimal() {
|
alpar@461
|
623 |
_clear_temporals();
|
alpar@461
|
624 |
|
alpar@461
|
625 |
glp_smcp smcp;
|
alpar@461
|
626 |
glp_init_smcp(&smcp);
|
alpar@461
|
627 |
|
deba@576
|
628 |
smcp.msg_lev = _message_level;
|
deba@565
|
629 |
smcp.presolve = _presolve;
|
alpar@461
|
630 |
|
deba@565
|
631 |
// If the basis is not valid we get an error return value.
|
deba@565
|
632 |
// In this case we can try to create a new basis.
|
deba@565
|
633 |
switch (glp_simplex(lp, &smcp)) {
|
deba@565
|
634 |
case 0:
|
deba@565
|
635 |
break;
|
deba@565
|
636 |
case GLP_EBADB:
|
deba@565
|
637 |
case GLP_ESING:
|
deba@565
|
638 |
case GLP_ECOND:
|
deba@566
|
639 |
glp_term_out(false);
|
deba@565
|
640 |
glp_adv_basis(lp, 0);
|
deba@566
|
641 |
glp_term_out(true);
|
deba@565
|
642 |
if (glp_simplex(lp, &smcp) != 0) return UNSOLVED;
|
deba@565
|
643 |
break;
|
deba@565
|
644 |
default:
|
deba@565
|
645 |
return UNSOLVED;
|
deba@565
|
646 |
}
|
deba@565
|
647 |
|
alpar@461
|
648 |
return SOLVED;
|
alpar@461
|
649 |
}
|
alpar@461
|
650 |
|
alpar@462
|
651 |
GlpkLp::SolveExitStatus GlpkLp::solveDual() {
|
alpar@461
|
652 |
_clear_temporals();
|
alpar@461
|
653 |
|
alpar@461
|
654 |
glp_smcp smcp;
|
alpar@461
|
655 |
glp_init_smcp(&smcp);
|
alpar@461
|
656 |
|
deba@576
|
657 |
smcp.msg_lev = _message_level;
|
alpar@461
|
658 |
smcp.meth = GLP_DUAL;
|
deba@565
|
659 |
smcp.presolve = _presolve;
|
alpar@461
|
660 |
|
deba@565
|
661 |
// If the basis is not valid we get an error return value.
|
deba@565
|
662 |
// In this case we can try to create a new basis.
|
deba@565
|
663 |
switch (glp_simplex(lp, &smcp)) {
|
deba@565
|
664 |
case 0:
|
deba@565
|
665 |
break;
|
deba@565
|
666 |
case GLP_EBADB:
|
deba@565
|
667 |
case GLP_ESING:
|
deba@565
|
668 |
case GLP_ECOND:
|
deba@566
|
669 |
glp_term_out(false);
|
deba@565
|
670 |
glp_adv_basis(lp, 0);
|
deba@566
|
671 |
glp_term_out(true);
|
deba@565
|
672 |
if (glp_simplex(lp, &smcp) != 0) return UNSOLVED;
|
deba@565
|
673 |
break;
|
deba@565
|
674 |
default:
|
deba@565
|
675 |
return UNSOLVED;
|
deba@565
|
676 |
}
|
alpar@461
|
677 |
return SOLVED;
|
alpar@461
|
678 |
}
|
alpar@461
|
679 |
|
alpar@462
|
680 |
GlpkLp::Value GlpkLp::_getPrimal(int i) const {
|
alpar@461
|
681 |
return glp_get_col_prim(lp, i);
|
alpar@461
|
682 |
}
|
alpar@461
|
683 |
|
alpar@462
|
684 |
GlpkLp::Value GlpkLp::_getDual(int i) const {
|
alpar@461
|
685 |
return glp_get_row_dual(lp, i);
|
alpar@461
|
686 |
}
|
alpar@461
|
687 |
|
alpar@462
|
688 |
GlpkLp::Value GlpkLp::_getPrimalValue() const {
|
alpar@461
|
689 |
return glp_get_obj_val(lp);
|
alpar@461
|
690 |
}
|
alpar@461
|
691 |
|
alpar@462
|
692 |
GlpkLp::VarStatus GlpkLp::_getColStatus(int i) const {
|
alpar@461
|
693 |
switch (glp_get_col_stat(lp, i)) {
|
alpar@461
|
694 |
case GLP_BS:
|
alpar@461
|
695 |
return BASIC;
|
alpar@461
|
696 |
case GLP_UP:
|
alpar@461
|
697 |
return UPPER;
|
alpar@461
|
698 |
case GLP_LO:
|
alpar@461
|
699 |
return LOWER;
|
alpar@461
|
700 |
case GLP_NF:
|
alpar@461
|
701 |
return FREE;
|
alpar@461
|
702 |
case GLP_NS:
|
alpar@461
|
703 |
return FIXED;
|
alpar@461
|
704 |
default:
|
alpar@461
|
705 |
LEMON_ASSERT(false, "Wrong column status");
|
alpar@462
|
706 |
return GlpkLp::VarStatus();
|
alpar@461
|
707 |
}
|
alpar@461
|
708 |
}
|
alpar@461
|
709 |
|
alpar@462
|
710 |
GlpkLp::VarStatus GlpkLp::_getRowStatus(int i) const {
|
alpar@461
|
711 |
switch (glp_get_row_stat(lp, i)) {
|
alpar@461
|
712 |
case GLP_BS:
|
alpar@461
|
713 |
return BASIC;
|
alpar@461
|
714 |
case GLP_UP:
|
alpar@461
|
715 |
return UPPER;
|
alpar@461
|
716 |
case GLP_LO:
|
alpar@461
|
717 |
return LOWER;
|
alpar@461
|
718 |
case GLP_NF:
|
alpar@461
|
719 |
return FREE;
|
alpar@461
|
720 |
case GLP_NS:
|
alpar@461
|
721 |
return FIXED;
|
alpar@461
|
722 |
default:
|
alpar@461
|
723 |
LEMON_ASSERT(false, "Wrong row status");
|
alpar@462
|
724 |
return GlpkLp::VarStatus();
|
alpar@461
|
725 |
}
|
alpar@461
|
726 |
}
|
alpar@461
|
727 |
|
alpar@462
|
728 |
GlpkLp::Value GlpkLp::_getPrimalRay(int i) const {
|
alpar@461
|
729 |
if (_primal_ray.empty()) {
|
alpar@461
|
730 |
int row_num = glp_get_num_rows(lp);
|
alpar@461
|
731 |
int col_num = glp_get_num_cols(lp);
|
alpar@461
|
732 |
|
alpar@461
|
733 |
_primal_ray.resize(col_num + 1, 0.0);
|
alpar@461
|
734 |
|
alpar@461
|
735 |
int index = glp_get_unbnd_ray(lp);
|
alpar@461
|
736 |
if (index != 0) {
|
alpar@461
|
737 |
// The primal ray is found in primal simplex second phase
|
alpar@461
|
738 |
LEMON_ASSERT((index <= row_num ? glp_get_row_stat(lp, index) :
|
alpar@461
|
739 |
glp_get_col_stat(lp, index - row_num)) != GLP_BS,
|
alpar@461
|
740 |
"Wrong primal ray");
|
alpar@461
|
741 |
|
alpar@461
|
742 |
bool negate = glp_get_obj_dir(lp) == GLP_MAX;
|
alpar@461
|
743 |
|
alpar@461
|
744 |
if (index > row_num) {
|
alpar@461
|
745 |
_primal_ray[index - row_num] = 1.0;
|
alpar@461
|
746 |
if (glp_get_col_dual(lp, index - row_num) > 0) {
|
alpar@461
|
747 |
negate = !negate;
|
alpar@461
|
748 |
}
|
alpar@461
|
749 |
} else {
|
alpar@461
|
750 |
if (glp_get_row_dual(lp, index) > 0) {
|
alpar@461
|
751 |
negate = !negate;
|
alpar@461
|
752 |
}
|
alpar@461
|
753 |
}
|
alpar@461
|
754 |
|
alpar@461
|
755 |
std::vector<int> ray_indexes(row_num + 1);
|
alpar@461
|
756 |
std::vector<Value> ray_values(row_num + 1);
|
alpar@461
|
757 |
int ray_length = glp_eval_tab_col(lp, index, &ray_indexes.front(),
|
alpar@461
|
758 |
&ray_values.front());
|
alpar@461
|
759 |
|
alpar@461
|
760 |
for (int i = 1; i <= ray_length; ++i) {
|
alpar@461
|
761 |
if (ray_indexes[i] > row_num) {
|
alpar@461
|
762 |
_primal_ray[ray_indexes[i] - row_num] = ray_values[i];
|
alpar@461
|
763 |
}
|
alpar@461
|
764 |
}
|
alpar@461
|
765 |
|
alpar@461
|
766 |
if (negate) {
|
alpar@461
|
767 |
for (int i = 1; i <= col_num; ++i) {
|
alpar@461
|
768 |
_primal_ray[i] = - _primal_ray[i];
|
alpar@461
|
769 |
}
|
alpar@461
|
770 |
}
|
alpar@461
|
771 |
} else {
|
alpar@461
|
772 |
for (int i = 1; i <= col_num; ++i) {
|
alpar@461
|
773 |
_primal_ray[i] = glp_get_col_prim(lp, i);
|
alpar@461
|
774 |
}
|
alpar@461
|
775 |
}
|
alpar@461
|
776 |
}
|
alpar@461
|
777 |
return _primal_ray[i];
|
alpar@461
|
778 |
}
|
alpar@461
|
779 |
|
alpar@462
|
780 |
GlpkLp::Value GlpkLp::_getDualRay(int i) const {
|
alpar@461
|
781 |
if (_dual_ray.empty()) {
|
alpar@461
|
782 |
int row_num = glp_get_num_rows(lp);
|
alpar@461
|
783 |
|
alpar@461
|
784 |
_dual_ray.resize(row_num + 1, 0.0);
|
alpar@461
|
785 |
|
alpar@461
|
786 |
int index = glp_get_unbnd_ray(lp);
|
alpar@461
|
787 |
if (index != 0) {
|
alpar@461
|
788 |
// The dual ray is found in dual simplex second phase
|
alpar@461
|
789 |
LEMON_ASSERT((index <= row_num ? glp_get_row_stat(lp, index) :
|
alpar@461
|
790 |
glp_get_col_stat(lp, index - row_num)) == GLP_BS,
|
alpar@461
|
791 |
|
alpar@461
|
792 |
"Wrong dual ray");
|
alpar@461
|
793 |
|
alpar@461
|
794 |
int idx;
|
alpar@461
|
795 |
bool negate = false;
|
alpar@461
|
796 |
|
alpar@461
|
797 |
if (index > row_num) {
|
alpar@461
|
798 |
idx = glp_get_col_bind(lp, index - row_num);
|
alpar@461
|
799 |
if (glp_get_col_prim(lp, index - row_num) >
|
alpar@461
|
800 |
glp_get_col_ub(lp, index - row_num)) {
|
alpar@461
|
801 |
negate = true;
|
alpar@461
|
802 |
}
|
alpar@461
|
803 |
} else {
|
alpar@461
|
804 |
idx = glp_get_row_bind(lp, index);
|
alpar@461
|
805 |
if (glp_get_row_prim(lp, index) > glp_get_row_ub(lp, index)) {
|
alpar@461
|
806 |
negate = true;
|
alpar@461
|
807 |
}
|
alpar@461
|
808 |
}
|
alpar@461
|
809 |
|
alpar@461
|
810 |
_dual_ray[idx] = negate ? - 1.0 : 1.0;
|
alpar@461
|
811 |
|
alpar@461
|
812 |
glp_btran(lp, &_dual_ray.front());
|
alpar@461
|
813 |
} else {
|
alpar@461
|
814 |
double eps = 1e-7;
|
alpar@461
|
815 |
// The dual ray is found in primal simplex first phase
|
alpar@461
|
816 |
// We assume that the glpk minimizes the slack to get feasible solution
|
alpar@461
|
817 |
for (int i = 1; i <= row_num; ++i) {
|
alpar@461
|
818 |
int index = glp_get_bhead(lp, i);
|
alpar@461
|
819 |
if (index <= row_num) {
|
alpar@461
|
820 |
double res = glp_get_row_prim(lp, index);
|
alpar@461
|
821 |
if (res > glp_get_row_ub(lp, index) + eps) {
|
alpar@461
|
822 |
_dual_ray[i] = -1;
|
alpar@461
|
823 |
} else if (res < glp_get_row_lb(lp, index) - eps) {
|
alpar@461
|
824 |
_dual_ray[i] = 1;
|
alpar@461
|
825 |
} else {
|
alpar@461
|
826 |
_dual_ray[i] = 0;
|
alpar@461
|
827 |
}
|
alpar@461
|
828 |
_dual_ray[i] *= glp_get_rii(lp, index);
|
alpar@461
|
829 |
} else {
|
alpar@461
|
830 |
double res = glp_get_col_prim(lp, index - row_num);
|
alpar@461
|
831 |
if (res > glp_get_col_ub(lp, index - row_num) + eps) {
|
alpar@461
|
832 |
_dual_ray[i] = -1;
|
alpar@461
|
833 |
} else if (res < glp_get_col_lb(lp, index - row_num) - eps) {
|
alpar@461
|
834 |
_dual_ray[i] = 1;
|
alpar@461
|
835 |
} else {
|
alpar@461
|
836 |
_dual_ray[i] = 0;
|
alpar@461
|
837 |
}
|
alpar@461
|
838 |
_dual_ray[i] /= glp_get_sjj(lp, index - row_num);
|
alpar@461
|
839 |
}
|
alpar@461
|
840 |
}
|
alpar@461
|
841 |
|
alpar@461
|
842 |
glp_btran(lp, &_dual_ray.front());
|
alpar@461
|
843 |
|
alpar@461
|
844 |
for (int i = 1; i <= row_num; ++i) {
|
alpar@461
|
845 |
_dual_ray[i] /= glp_get_rii(lp, i);
|
alpar@461
|
846 |
}
|
alpar@461
|
847 |
}
|
alpar@461
|
848 |
}
|
alpar@461
|
849 |
return _dual_ray[i];
|
alpar@461
|
850 |
}
|
alpar@461
|
851 |
|
alpar@462
|
852 |
GlpkLp::ProblemType GlpkLp::_getPrimalType() const {
|
alpar@461
|
853 |
if (glp_get_status(lp) == GLP_OPT)
|
alpar@461
|
854 |
return OPTIMAL;
|
alpar@461
|
855 |
switch (glp_get_prim_stat(lp)) {
|
alpar@461
|
856 |
case GLP_UNDEF:
|
alpar@461
|
857 |
return UNDEFINED;
|
alpar@461
|
858 |
case GLP_FEAS:
|
alpar@461
|
859 |
case GLP_INFEAS:
|
alpar@461
|
860 |
if (glp_get_dual_stat(lp) == GLP_NOFEAS) {
|
alpar@461
|
861 |
return UNBOUNDED;
|
alpar@461
|
862 |
} else {
|
alpar@461
|
863 |
return UNDEFINED;
|
alpar@461
|
864 |
}
|
alpar@461
|
865 |
case GLP_NOFEAS:
|
alpar@461
|
866 |
return INFEASIBLE;
|
alpar@461
|
867 |
default:
|
alpar@461
|
868 |
LEMON_ASSERT(false, "Wrong primal type");
|
alpar@462
|
869 |
return GlpkLp::ProblemType();
|
alpar@461
|
870 |
}
|
alpar@461
|
871 |
}
|
alpar@461
|
872 |
|
alpar@462
|
873 |
GlpkLp::ProblemType GlpkLp::_getDualType() const {
|
alpar@461
|
874 |
if (glp_get_status(lp) == GLP_OPT)
|
alpar@461
|
875 |
return OPTIMAL;
|
alpar@461
|
876 |
switch (glp_get_dual_stat(lp)) {
|
alpar@461
|
877 |
case GLP_UNDEF:
|
alpar@461
|
878 |
return UNDEFINED;
|
alpar@461
|
879 |
case GLP_FEAS:
|
alpar@461
|
880 |
case GLP_INFEAS:
|
alpar@461
|
881 |
if (glp_get_prim_stat(lp) == GLP_NOFEAS) {
|
alpar@461
|
882 |
return UNBOUNDED;
|
alpar@461
|
883 |
} else {
|
alpar@461
|
884 |
return UNDEFINED;
|
alpar@461
|
885 |
}
|
alpar@461
|
886 |
case GLP_NOFEAS:
|
alpar@461
|
887 |
return INFEASIBLE;
|
alpar@461
|
888 |
default:
|
alpar@461
|
889 |
LEMON_ASSERT(false, "Wrong primal type");
|
alpar@462
|
890 |
return GlpkLp::ProblemType();
|
alpar@461
|
891 |
}
|
alpar@461
|
892 |
}
|
alpar@461
|
893 |
|
deba@565
|
894 |
void GlpkLp::presolver(bool presolve) {
|
deba@565
|
895 |
_presolve = presolve;
|
alpar@461
|
896 |
}
|
alpar@461
|
897 |
|
alpar@462
|
898 |
// GlpkMip members
|
alpar@461
|
899 |
|
alpar@462
|
900 |
GlpkMip::GlpkMip()
|
deba@551
|
901 |
: LpBase(), MipSolver(), GlpkBase() {
|
alpar@461
|
902 |
}
|
alpar@461
|
903 |
|
alpar@462
|
904 |
GlpkMip::GlpkMip(const GlpkMip& other)
|
deba@551
|
905 |
: LpBase(), MipSolver(), GlpkBase(other) {
|
alpar@461
|
906 |
}
|
alpar@461
|
907 |
|
alpar@462
|
908 |
void GlpkMip::_setColType(int i, GlpkMip::ColTypes col_type) {
|
alpar@461
|
909 |
switch (col_type) {
|
alpar@461
|
910 |
case INTEGER:
|
alpar@461
|
911 |
glp_set_col_kind(lp, i, GLP_IV);
|
alpar@461
|
912 |
break;
|
alpar@461
|
913 |
case REAL:
|
alpar@461
|
914 |
glp_set_col_kind(lp, i, GLP_CV);
|
alpar@461
|
915 |
break;
|
alpar@461
|
916 |
}
|
alpar@461
|
917 |
}
|
alpar@461
|
918 |
|
alpar@462
|
919 |
GlpkMip::ColTypes GlpkMip::_getColType(int i) const {
|
alpar@461
|
920 |
switch (glp_get_col_kind(lp, i)) {
|
alpar@461
|
921 |
case GLP_IV:
|
alpar@461
|
922 |
case GLP_BV:
|
alpar@461
|
923 |
return INTEGER;
|
alpar@461
|
924 |
default:
|
alpar@461
|
925 |
return REAL;
|
alpar@461
|
926 |
}
|
alpar@461
|
927 |
|
alpar@461
|
928 |
}
|
alpar@461
|
929 |
|
alpar@462
|
930 |
GlpkMip::SolveExitStatus GlpkMip::_solve() {
|
alpar@461
|
931 |
glp_smcp smcp;
|
alpar@461
|
932 |
glp_init_smcp(&smcp);
|
alpar@461
|
933 |
|
deba@576
|
934 |
smcp.msg_lev = _message_level;
|
alpar@461
|
935 |
smcp.meth = GLP_DUAL;
|
alpar@461
|
936 |
|
deba@565
|
937 |
// If the basis is not valid we get an error return value.
|
deba@565
|
938 |
// In this case we can try to create a new basis.
|
deba@565
|
939 |
switch (glp_simplex(lp, &smcp)) {
|
deba@565
|
940 |
case 0:
|
deba@565
|
941 |
break;
|
deba@565
|
942 |
case GLP_EBADB:
|
deba@565
|
943 |
case GLP_ESING:
|
deba@565
|
944 |
case GLP_ECOND:
|
deba@566
|
945 |
glp_term_out(false);
|
deba@565
|
946 |
glp_adv_basis(lp, 0);
|
deba@566
|
947 |
glp_term_out(true);
|
deba@565
|
948 |
if (glp_simplex(lp, &smcp) != 0) return UNSOLVED;
|
deba@565
|
949 |
break;
|
deba@565
|
950 |
default:
|
deba@565
|
951 |
return UNSOLVED;
|
deba@565
|
952 |
}
|
deba@565
|
953 |
|
alpar@461
|
954 |
if (glp_get_status(lp) != GLP_OPT) return SOLVED;
|
alpar@461
|
955 |
|
alpar@461
|
956 |
glp_iocp iocp;
|
alpar@461
|
957 |
glp_init_iocp(&iocp);
|
alpar@461
|
958 |
|
deba@576
|
959 |
iocp.msg_lev = _message_level;
|
alpar@461
|
960 |
|
alpar@461
|
961 |
if (glp_intopt(lp, &iocp) != 0) return UNSOLVED;
|
alpar@461
|
962 |
return SOLVED;
|
alpar@461
|
963 |
}
|
alpar@461
|
964 |
|
alpar@461
|
965 |
|
alpar@462
|
966 |
GlpkMip::ProblemType GlpkMip::_getType() const {
|
alpar@461
|
967 |
switch (glp_get_status(lp)) {
|
alpar@461
|
968 |
case GLP_OPT:
|
alpar@461
|
969 |
switch (glp_mip_status(lp)) {
|
alpar@461
|
970 |
case GLP_UNDEF:
|
alpar@461
|
971 |
return UNDEFINED;
|
alpar@461
|
972 |
case GLP_NOFEAS:
|
alpar@461
|
973 |
return INFEASIBLE;
|
alpar@461
|
974 |
case GLP_FEAS:
|
alpar@461
|
975 |
return FEASIBLE;
|
alpar@461
|
976 |
case GLP_OPT:
|
alpar@461
|
977 |
return OPTIMAL;
|
alpar@461
|
978 |
default:
|
alpar@461
|
979 |
LEMON_ASSERT(false, "Wrong problem type.");
|
alpar@462
|
980 |
return GlpkMip::ProblemType();
|
alpar@461
|
981 |
}
|
alpar@461
|
982 |
case GLP_NOFEAS:
|
alpar@461
|
983 |
return INFEASIBLE;
|
alpar@461
|
984 |
case GLP_INFEAS:
|
alpar@461
|
985 |
case GLP_FEAS:
|
alpar@461
|
986 |
if (glp_get_dual_stat(lp) == GLP_NOFEAS) {
|
alpar@461
|
987 |
return UNBOUNDED;
|
alpar@461
|
988 |
} else {
|
alpar@461
|
989 |
return UNDEFINED;
|
alpar@461
|
990 |
}
|
alpar@461
|
991 |
default:
|
alpar@461
|
992 |
LEMON_ASSERT(false, "Wrong problem type.");
|
alpar@462
|
993 |
return GlpkMip::ProblemType();
|
alpar@461
|
994 |
}
|
alpar@461
|
995 |
}
|
alpar@461
|
996 |
|
alpar@462
|
997 |
GlpkMip::Value GlpkMip::_getSol(int i) const {
|
alpar@461
|
998 |
return glp_mip_col_val(lp, i);
|
alpar@461
|
999 |
}
|
alpar@461
|
1000 |
|
alpar@462
|
1001 |
GlpkMip::Value GlpkMip::_getSolValue() const {
|
alpar@461
|
1002 |
return glp_mip_obj_val(lp);
|
alpar@461
|
1003 |
}
|
alpar@461
|
1004 |
|
alpar@540
|
1005 |
GlpkMip* GlpkMip::newSolver() const { return new GlpkMip; }
|
alpar@540
|
1006 |
GlpkMip* GlpkMip::cloneSolver() const {return new GlpkMip(*this); }
|
alpar@461
|
1007 |
|
alpar@462
|
1008 |
const char* GlpkMip::_solverName() const { return "GlpkMip"; }
|
alpar@461
|
1009 |
|
alpar@1063
|
1010 |
|
alpar@1063
|
1011 |
|
alpar@461
|
1012 |
} //END OF NAMESPACE LEMON
|