More sophisticated warning messages.
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
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.
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
20 ///\brief Implementation of the LEMON-GLPK lp solver interface.
22 #include <lemon/lp_glpk.h>
27 LpGlpk::LpGlpk() : Parent(),
28 lp(lpx_create_prob()) {
29 ///\todo constrol function for this:
30 lpx_set_int_parm(lp, LPX_K_DUAL, 1);
34 LpGlpk::LpGlpk(const LpGlpk &glp) : Parent(glp),
35 lp(lpx_create_prob()) {
36 ///\todo constrol function for this:
37 lpx_set_int_parm(lp, LPX_K_DUAL, 1);
39 //Coefficient matrix, row bounds
40 lpx_add_rows(lp, lpx_get_num_rows(glp.lp));
41 lpx_add_cols(lp, lpx_get_num_cols(glp.lp));
43 int ind[1+lpx_get_num_cols(glp.lp)];
44 Value val[1+lpx_get_num_cols(glp.lp)];
45 for (int i=1;i<=lpx_get_num_rows(glp.lp);++i)
47 len=lpx_get_mat_row(glp.lp,i,ind,val);
48 lpx_set_mat_row(lp, i,len,ind,val);
49 lpx_set_row_bnds(lp,i,lpx_get_row_type(glp.lp,i),
50 lpx_get_row_lb(glp.lp,i),lpx_get_row_ub(glp.lp,i));
53 //Objective function, coloumn bounds
54 lpx_set_obj_dir(lp, lpx_get_obj_dir(glp.lp));
55 //Objectif function's constant term treated separately
56 lpx_set_obj_coef(lp,0,lpx_get_obj_coef(glp.lp,0));
57 for (int i=1;i<=lpx_get_num_cols(glp.lp);++i)
59 lpx_set_obj_coef(lp,i,lpx_get_obj_coef(glp.lp,i));
60 lpx_set_col_bnds(lp,i,lpx_get_col_type(glp.lp,i),
61 lpx_get_col_lb(glp.lp,i),lpx_get_col_ub(glp.lp,i));
69 int LpGlpk::_addCol() {
70 int i=lpx_add_cols(lp, 1);
71 _setColLowerBound(i, -INF);
72 _setColUpperBound(i, INF);
79 LpSolverBase &LpGlpk::_newLp()
81 LpGlpk* newlp=new LpGlpk;
87 LpSolverBase &LpGlpk::_copyLp()
89 LpGlpk* newlp=new LpGlpk(*this);
93 int LpGlpk::_addRow() {
94 int i=lpx_add_rows(lp, 1);
99 void LpGlpk::_eraseCol(int i) {
102 lpx_del_cols(lp, 1, cols);
105 void LpGlpk::_eraseRow(int i) {
108 lpx_del_rows(lp, 1, rows);
111 void LpGlpk::_getColName(int col, std::string & name)
114 char *n = lpx_get_col_name(lp,col);
119 void LpGlpk::_setColName(int col, const std::string & name)
121 lpx_set_col_name(lp,col,const_cast<char*>(name.c_str()));
124 void LpGlpk::_setRowCoeffs(int i, LpRowIterator b, LpRowIterator e)
126 std::vector<int> indices;
127 std::vector<Value> values;
129 indices.push_back(0);
132 for(LpRowIterator it=b; it!=e; ++it) {
133 indices.push_back(it->first);
134 values.push_back(it->second);
137 lpx_set_mat_row(lp, i, values.size() - 1, &indices[0], &values[0]);
140 void LpGlpk::_setColCoeffs(int i, LpColIterator b, LpColIterator e) {
142 std::vector<int> indices;
143 std::vector<Value> values;
145 indices.push_back(0);
148 for(LpColIterator it=b; it!=e; ++it) {
149 indices.push_back(it->first);
150 values.push_back(it->second);
153 lpx_set_mat_col(lp, i, values.size() - 1, &indices[0], &values[0]);
157 void LpGlpk::_setCoeff(int row, int col, Value value)
160 if (lpx_get_num_cols(lp) < lpx_get_num_rows(lp)) {
162 int length=lpx_get_mat_row(lp, row, 0, 0);
164 std::vector<int> indices(length + 2);
165 std::vector<Value> values(length + 2);
167 lpx_get_mat_row(lp, row, &indices[0], &values[0]);
169 //The following code does not suppose that the elements of the
170 //array indices are sorted
172 for (int i = 1; i <= length; ++i) {
173 if (indices[i]==col){
182 values[length]=value;
185 lpx_set_mat_row(lp, row, length, &indices[0], &values[0]);
189 int length=lpx_get_mat_col(lp, col, 0, 0);
191 std::vector<int> indices(length + 2);
192 std::vector<Value> values(length + 2);
194 lpx_get_mat_col(lp, col, &indices[0], &values[0]);
196 //The following code does not suppose that the elements of the
197 //array indices are sorted
199 for (int i = 1; i <= length; ++i) {
200 if (indices[i]==col){
209 values[length]=value;
212 lpx_set_mat_col(lp, col, length, &indices[0], &values[0]);
216 LpGlpk::Value LpGlpk::_getCoeff(int, int)
218 ///\todo This is not yet implemented!!!
223 void LpGlpk::_setColLowerBound(int i, Value lo)
228 int b=lpx_get_col_type(lp, i);
229 double up=lpx_get_col_ub(lp, i);
234 lpx_set_col_bnds(lp, i, LPX_FR, lo, up);
240 lpx_set_col_bnds(lp, i, LPX_UP, lo, up);
249 lpx_set_col_bnds(lp, i, LPX_LO, lo, up);
255 lpx_set_col_bnds(lp, i, LPX_FX, lo, up);
257 lpx_set_col_bnds(lp, i, LPX_DB, lo, up);
266 void LpGlpk::_setColUpperBound(int i, Value up)
271 int b=lpx_get_col_type(lp, i);
272 double lo=lpx_get_col_lb(lp, i);
279 lpx_set_col_bnds(lp, i, LPX_FR, lo, up);
283 lpx_set_col_bnds(lp, i, LPX_LO, lo, up);
291 lpx_set_col_bnds(lp, i, LPX_UP, lo, up);
294 lpx_set_col_bnds(lp, i, LPX_UP, lo, up);
300 lpx_set_col_bnds(lp, i, LPX_FX, lo, up);
302 lpx_set_col_bnds(lp, i, LPX_DB, lo, up);
310 // void LpGlpk::_setRowLowerBound(int i, Value lo)
315 // int b=lpx_get_row_type(lp, i);
316 // double up=lpx_get_row_ub(lp, i);
321 // lpx_set_row_bnds(lp, i, LPX_FR, lo, up);
327 // lpx_set_row_bnds(lp, i, LPX_UP, lo, up);
336 // lpx_set_row_bnds(lp, i, LPX_LO, lo, up);
342 // lpx_set_row_bnds(lp, i, LPX_FX, lo, up);
344 // lpx_set_row_bnds(lp, i, LPX_DB, lo, up);
352 // void LpGlpk::_setRowUpperBound(int i, Value up)
357 // int b=lpx_get_row_type(lp, i);
358 // double lo=lpx_get_row_lb(lp, i);
365 // lpx_set_row_bnds(lp, i, LPX_FR, lo, up);
369 // lpx_set_row_bnds(lp, i, LPX_LO, lo, up);
377 // lpx_set_row_bnds(lp, i, LPX_UP, lo, up);
380 // lpx_set_row_bnds(lp, i, LPX_UP, lo, up);
386 // lpx_set_row_bnds(lp, i, LPX_FX, lo, up);
388 // lpx_set_row_bnds(lp, i, LPX_DB, lo, up);
396 void LpGlpk::_setRowBounds(int i, Value lb, Value ub)
399 if (lb==INF || ub==-INF) {
405 lpx_set_row_bnds(lp, i, LPX_FR, lb, ub);
408 lpx_set_row_bnds(lp, i, LPX_UP, lb, ub);
413 lpx_set_row_bnds(lp, i, LPX_LO, lb, ub);
418 lpx_set_row_bnds(lp, i, LPX_FX, lb, ub);
421 lpx_set_row_bnds(lp, i, LPX_DB, lb, ub);
428 void LpGlpk::_setObjCoeff(int i, Value obj_coef)
430 //i=0 means the constant term (shift)
431 lpx_set_obj_coef(lp, i, obj_coef);
434 LpGlpk::Value LpGlpk::_getObjCoeff(int i){
435 //i=0 means the constant term (shift)
436 return lpx_get_obj_coef(lp, i);
439 void LpGlpk::_clearObj()
441 for (int i=0;i<=lpx_get_num_cols(lp);++i){
442 lpx_set_obj_coef(lp, i, 0);
445 // void LpGlpk::_setObj(int length,
446 // int const * indices,
447 // Value const * values )
449 // Value new_values[1+lpx_num_cols()];
450 // for (i=0;i<=lpx_num_cols();++i){
453 // for (i=1;i<=length;++i){
454 // new_values[indices[i]]=values[i];
457 // for (i=0;i<=lpx_num_cols();++i){
458 // lpx_set_obj_coef(lp, i, new_values[i]);
462 LpGlpk::SolveExitStatus LpGlpk::_solve()
464 int i = lpx_simplex(lp);
473 LpGlpk::Value LpGlpk::_getPrimal(int i)
475 return lpx_get_col_prim(lp,i);
478 LpGlpk::Value LpGlpk::_getDual(int i)
480 return lpx_get_row_dual(lp,i);
483 LpGlpk::Value LpGlpk::_getPrimalValue()
485 return lpx_get_obj_val(lp);
487 bool LpGlpk::_isBasicCol(int i) {
488 return (lpx_get_col_stat(lp, i)==LPX_BS);
492 LpGlpk::SolutionStatus LpGlpk::_getPrimalStatus()
494 int stat= lpx_get_status(lp);
496 case LPX_UNDEF://Undefined (no solve has been run yet)
498 case LPX_NOFEAS://There is no feasible solution (primal, I guess)
499 case LPX_INFEAS://Infeasible
501 case LPX_UNBND://Unbounded
503 case LPX_FEAS://Feasible
505 case LPX_OPT://Feasible
508 return UNDEFINED; //to avoid gcc warning
513 LpGlpk::SolutionStatus LpGlpk::_getDualStatus()
515 // std::cout<<"Itt megy: "<<lpx_get_dual_stat(lp)<<std::endl;
516 // std::cout<<"Itt a primal: "<<lpx_get_prim_stat(lp)<<std::endl;
518 switch (lpx_get_dual_stat(lp)) {
519 case LPX_D_UNDEF://Undefined (no solve has been run yet)
521 case LPX_D_NOFEAS://There is no dual feasible solution
522 // case LPX_D_INFEAS://Infeasible
524 case LPX_D_FEAS://Feasible
525 switch (lpx_get_status(lp)) {
534 return UNDEFINED; //to avoid gcc warning
539 LpGlpk::ProblemTypes LpGlpk::_getProblemType()
541 //int stat= lpx_get_status(lp);
542 int statp= lpx_get_prim_stat(lp);
543 int statd= lpx_get_dual_stat(lp);
544 if (statp==LPX_P_FEAS && statd==LPX_D_FEAS)
545 return PRIMAL_DUAL_FEASIBLE;
546 if (statp==LPX_P_FEAS && statd==LPX_D_NOFEAS)
547 return PRIMAL_FEASIBLE_DUAL_INFEASIBLE;
548 if (statp==LPX_P_NOFEAS && statd==LPX_D_FEAS)
549 return PRIMAL_INFEASIBLE_DUAL_FEASIBLE;
550 if (statp==LPX_P_NOFEAS && statd==LPX_D_NOFEAS)
551 return PRIMAL_DUAL_INFEASIBLE;
556 void LpGlpk::_setMax()
558 lpx_set_obj_dir(lp, LPX_MAX);
561 void LpGlpk::_setMin()
563 lpx_set_obj_dir(lp, LPX_MIN);
566 bool LpGlpk::_isMax()
568 return (lpx_get_obj_dir(lp)==LPX_MAX);
573 void LpGlpk::messageLevel(int m)
575 lpx_set_int_parm(lp, LPX_K_MSGLEV, m);
578 void LpGlpk::presolver(bool b)
580 lpx_set_int_parm(lp, LPX_K_PRESOL, b);
584 } //END OF NAMESPACE LEMON