| [458] | 1 | /* -*- mode: C++; indent-tabs-mode: nil; -*- | 
|---|
|  | 2 | * | 
|---|
|  | 3 | * This file is a part of LEMON, a generic C++ optimization library. | 
|---|
|  | 4 | * | 
|---|
| [1092] | 5 | * Copyright (C) 2003-2013 | 
|---|
| [458] | 6 | * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport | 
|---|
|  | 7 | * (Egervary Research Group on Combinatorial Optimization, EGRES). | 
|---|
|  | 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 |  | 
|---|
|  | 19 | #include <sstream> | 
|---|
|  | 20 | #include <lemon/lp_skeleton.h> | 
|---|
|  | 21 | #include "test_tools.h" | 
|---|
|  | 22 | #include <lemon/tolerance.h> | 
|---|
| [1131] | 23 | #include <lemon/concept_check.h> | 
|---|
| [458] | 24 | #include <lemon/config.h> | 
|---|
|  | 25 |  | 
|---|
| [627] | 26 | #ifdef LEMON_HAVE_GLPK | 
|---|
| [461] | 27 | #include <lemon/glpk.h> | 
|---|
| [458] | 28 | #endif | 
|---|
|  | 29 |  | 
|---|
| [627] | 30 | #ifdef LEMON_HAVE_CPLEX | 
|---|
| [461] | 31 | #include <lemon/cplex.h> | 
|---|
| [458] | 32 | #endif | 
|---|
|  | 33 |  | 
|---|
| [627] | 34 | #ifdef LEMON_HAVE_SOPLEX | 
|---|
| [461] | 35 | #include <lemon/soplex.h> | 
|---|
| [458] | 36 | #endif | 
|---|
|  | 37 |  | 
|---|
| [627] | 38 | #ifdef LEMON_HAVE_CLP | 
|---|
| [461] | 39 | #include <lemon/clp.h> | 
|---|
| [459] | 40 | #endif | 
|---|
|  | 41 |  | 
|---|
| [1105] | 42 | #ifdef LEMON_HAVE_LP | 
|---|
|  | 43 | #include <lemon/lp.h> | 
|---|
|  | 44 | #endif | 
|---|
| [458] | 45 | using namespace lemon; | 
|---|
|  | 46 |  | 
|---|
| [988] | 47 | int countCols(LpBase & lp) { | 
|---|
|  | 48 | int count=0; | 
|---|
|  | 49 | for (LpBase::ColIt c(lp); c!=INVALID; ++c) ++count; | 
|---|
| [1131] | 50 | #ifdef LEMON_CXX11 | 
|---|
|  | 51 | int cnt = 0; | 
|---|
|  | 52 | for(auto c: lp.cols()) { cnt++; ::lemon::ignore_unused_variable_warning(c); } | 
|---|
|  | 53 | check(count == cnt, "Wrong STL iterator"); | 
|---|
|  | 54 | #endif | 
|---|
| [988] | 55 | return count; | 
|---|
|  | 56 | } | 
|---|
|  | 57 |  | 
|---|
|  | 58 | int countRows(LpBase & lp) { | 
|---|
|  | 59 | int count=0; | 
|---|
|  | 60 | for (LpBase::RowIt r(lp); r!=INVALID; ++r) ++count; | 
|---|
| [1131] | 61 | #ifdef LEMON_CXX11 | 
|---|
|  | 62 | int cnt = 0; | 
|---|
|  | 63 | for(auto r: lp.rows()) { cnt++; ::lemon::ignore_unused_variable_warning(r); } | 
|---|
|  | 64 | check(count == cnt, "Wrong STL iterator"); | 
|---|
|  | 65 | #endif | 
|---|
| [988] | 66 | return count; | 
|---|
|  | 67 | } | 
|---|
|  | 68 |  | 
|---|
|  | 69 |  | 
|---|
| [459] | 70 | void lpTest(LpSolver& lp) | 
|---|
| [458] | 71 | { | 
|---|
|  | 72 |  | 
|---|
| [459] | 73 | typedef LpSolver LP; | 
|---|
| [458] | 74 |  | 
|---|
| [988] | 75 | // Test LpBase::clear() | 
|---|
|  | 76 | check(countRows(lp)==0, "Wrong number of rows"); | 
|---|
|  | 77 | check(countCols(lp)==0, "Wrong number of cols"); | 
|---|
|  | 78 | lp.addCol(); lp.addRow(); lp.addRow(); | 
|---|
|  | 79 | check(countRows(lp)==2, "Wrong number of rows"); | 
|---|
|  | 80 | check(countCols(lp)==1, "Wrong number of cols"); | 
|---|
|  | 81 | lp.clear(); | 
|---|
|  | 82 | check(countRows(lp)==0, "Wrong number of rows"); | 
|---|
|  | 83 | check(countCols(lp)==0, "Wrong number of cols"); | 
|---|
|  | 84 | lp.addCol(); lp.addCol(); lp.addCol(); lp.addRow(); | 
|---|
|  | 85 | check(countRows(lp)==1, "Wrong number of rows"); | 
|---|
|  | 86 | check(countCols(lp)==3, "Wrong number of cols"); | 
|---|
|  | 87 | lp.clear(); | 
|---|
|  | 88 |  | 
|---|
| [458] | 89 | std::vector<LP::Col> x(10); | 
|---|
|  | 90 | //  for(int i=0;i<10;i++) x.push_back(lp.addCol()); | 
|---|
|  | 91 | lp.addColSet(x); | 
|---|
|  | 92 | lp.colLowerBound(x,1); | 
|---|
|  | 93 | lp.colUpperBound(x,1); | 
|---|
|  | 94 | lp.colBounds(x,1,2); | 
|---|
|  | 95 |  | 
|---|
|  | 96 | std::vector<LP::Col> y(10); | 
|---|
|  | 97 | lp.addColSet(y); | 
|---|
|  | 98 |  | 
|---|
|  | 99 | lp.colLowerBound(y,1); | 
|---|
|  | 100 | lp.colUpperBound(y,1); | 
|---|
|  | 101 | lp.colBounds(y,1,2); | 
|---|
|  | 102 |  | 
|---|
|  | 103 | std::map<int,LP::Col> z; | 
|---|
|  | 104 |  | 
|---|
|  | 105 | z.insert(std::make_pair(12,INVALID)); | 
|---|
|  | 106 | z.insert(std::make_pair(2,INVALID)); | 
|---|
|  | 107 | z.insert(std::make_pair(7,INVALID)); | 
|---|
|  | 108 | z.insert(std::make_pair(5,INVALID)); | 
|---|
|  | 109 |  | 
|---|
|  | 110 | lp.addColSet(z); | 
|---|
|  | 111 |  | 
|---|
|  | 112 | lp.colLowerBound(z,1); | 
|---|
|  | 113 | lp.colUpperBound(z,1); | 
|---|
|  | 114 | lp.colBounds(z,1,2); | 
|---|
|  | 115 |  | 
|---|
|  | 116 | { | 
|---|
|  | 117 | LP::Expr e,f,g; | 
|---|
|  | 118 | LP::Col p1,p2,p3,p4,p5; | 
|---|
|  | 119 | LP::Constr c; | 
|---|
|  | 120 |  | 
|---|
|  | 121 | p1=lp.addCol(); | 
|---|
|  | 122 | p2=lp.addCol(); | 
|---|
|  | 123 | p3=lp.addCol(); | 
|---|
|  | 124 | p4=lp.addCol(); | 
|---|
|  | 125 | p5=lp.addCol(); | 
|---|
|  | 126 |  | 
|---|
|  | 127 | e[p1]=2; | 
|---|
| [459] | 128 | *e=12; | 
|---|
| [458] | 129 | e[p1]+=2; | 
|---|
| [459] | 130 | *e+=12; | 
|---|
| [458] | 131 | e[p1]-=2; | 
|---|
| [459] | 132 | *e-=12; | 
|---|
| [458] | 133 |  | 
|---|
|  | 134 | e=2; | 
|---|
|  | 135 | e=2.2; | 
|---|
|  | 136 | e=p1; | 
|---|
|  | 137 | e=f; | 
|---|
|  | 138 |  | 
|---|
|  | 139 | e+=2; | 
|---|
|  | 140 | e+=2.2; | 
|---|
|  | 141 | e+=p1; | 
|---|
|  | 142 | e+=f; | 
|---|
|  | 143 |  | 
|---|
|  | 144 | e-=2; | 
|---|
|  | 145 | e-=2.2; | 
|---|
|  | 146 | e-=p1; | 
|---|
|  | 147 | e-=f; | 
|---|
|  | 148 |  | 
|---|
|  | 149 | e*=2; | 
|---|
|  | 150 | e*=2.2; | 
|---|
|  | 151 | e/=2; | 
|---|
|  | 152 | e/=2.2; | 
|---|
|  | 153 |  | 
|---|
|  | 154 | e=((p1+p2)+(p1-p2)+(p1+12)+(12+p1)+(p1-12)+(12-p1)+ | 
|---|
|  | 155 | (f+12)+(12+f)+(p1+f)+(f+p1)+(f+g)+ | 
|---|
|  | 156 | (f-12)+(12-f)+(p1-f)+(f-p1)+(f-g)+ | 
|---|
|  | 157 | 2.2*f+f*2.2+f/2.2+ | 
|---|
|  | 158 | 2*f+f*2+f/2+ | 
|---|
|  | 159 | 2.2*p1+p1*2.2+p1/2.2+ | 
|---|
|  | 160 | 2*p1+p1*2+p1/2 | 
|---|
|  | 161 | ); | 
|---|
|  | 162 |  | 
|---|
|  | 163 |  | 
|---|
|  | 164 | c = (e  <= f  ); | 
|---|
|  | 165 | c = (e  <= 2.2); | 
|---|
|  | 166 | c = (e  <= 2  ); | 
|---|
|  | 167 | c = (e  <= p1 ); | 
|---|
|  | 168 | c = (2.2<= f  ); | 
|---|
|  | 169 | c = (2  <= f  ); | 
|---|
|  | 170 | c = (p1 <= f  ); | 
|---|
|  | 171 | c = (p1 <= p2 ); | 
|---|
|  | 172 | c = (p1 <= 2.2); | 
|---|
|  | 173 | c = (p1 <= 2  ); | 
|---|
|  | 174 | c = (2.2<= p2 ); | 
|---|
|  | 175 | c = (2  <= p2 ); | 
|---|
|  | 176 |  | 
|---|
|  | 177 | c = (e  >= f  ); | 
|---|
|  | 178 | c = (e  >= 2.2); | 
|---|
|  | 179 | c = (e  >= 2  ); | 
|---|
|  | 180 | c = (e  >= p1 ); | 
|---|
|  | 181 | c = (2.2>= f  ); | 
|---|
|  | 182 | c = (2  >= f  ); | 
|---|
|  | 183 | c = (p1 >= f  ); | 
|---|
|  | 184 | c = (p1 >= p2 ); | 
|---|
|  | 185 | c = (p1 >= 2.2); | 
|---|
|  | 186 | c = (p1 >= 2  ); | 
|---|
|  | 187 | c = (2.2>= p2 ); | 
|---|
|  | 188 | c = (2  >= p2 ); | 
|---|
|  | 189 |  | 
|---|
|  | 190 | c = (e  == f  ); | 
|---|
|  | 191 | c = (e  == 2.2); | 
|---|
|  | 192 | c = (e  == 2  ); | 
|---|
|  | 193 | c = (e  == p1 ); | 
|---|
|  | 194 | c = (2.2== f  ); | 
|---|
|  | 195 | c = (2  == f  ); | 
|---|
|  | 196 | c = (p1 == f  ); | 
|---|
|  | 197 | //c = (p1 == p2 ); | 
|---|
|  | 198 | c = (p1 == 2.2); | 
|---|
|  | 199 | c = (p1 == 2  ); | 
|---|
|  | 200 | c = (2.2== p2 ); | 
|---|
|  | 201 | c = (2  == p2 ); | 
|---|
|  | 202 |  | 
|---|
| [460] | 203 | c = ((2 <= e) <= 3); | 
|---|
|  | 204 | c = ((2 <= p1) <= 3); | 
|---|
| [458] | 205 |  | 
|---|
| [460] | 206 | c = ((2 >= e) >= 3); | 
|---|
|  | 207 | c = ((2 >= p1) >= 3); | 
|---|
| [458] | 208 |  | 
|---|
| [957] | 209 | { //Tests for #430 | 
|---|
|  | 210 | LP::Col v=lp.addCol(); | 
|---|
|  | 211 | LP::Constr c = v >= -3; | 
|---|
|  | 212 | c = c <= 4; | 
|---|
|  | 213 | LP::Constr c2; | 
|---|
| [1078] | 214 | #if ( __GNUC__ == 4 ) && ( __GNUC_MINOR__ == 3 ) | 
|---|
|  | 215 | c2 = ( -3 <= v ) <= 4; | 
|---|
|  | 216 | #else | 
|---|
| [957] | 217 | c2 = -3 <= v <= 4; | 
|---|
| [1078] | 218 | #endif | 
|---|
|  | 219 |  | 
|---|
| [957] | 220 | } | 
|---|
|  | 221 |  | 
|---|
| [458] | 222 | e[x[3]]=2; | 
|---|
|  | 223 | e[x[3]]=4; | 
|---|
|  | 224 | e[x[3]]=1; | 
|---|
| [459] | 225 | *e=12; | 
|---|
| [458] | 226 |  | 
|---|
| [459] | 227 | lp.addRow(-LP::INF,e,23); | 
|---|
|  | 228 | lp.addRow(-LP::INF,3.0*(x[1]+x[2]/2)-x[3],23); | 
|---|
|  | 229 | lp.addRow(-LP::INF,3.0*(x[1]+x[2]*2-5*x[3]+12-x[4]/3)+2*x[4]-4,23); | 
|---|
| [458] | 230 |  | 
|---|
|  | 231 | lp.addRow(x[1]+x[3]<=x[5]-3); | 
|---|
| [460] | 232 | lp.addRow((-7<=x[1]+x[3]-12)<=3); | 
|---|
| [458] | 233 | lp.addRow(x[1]<=x[5]); | 
|---|
|  | 234 |  | 
|---|
|  | 235 | std::ostringstream buf; | 
|---|
|  | 236 |  | 
|---|
|  | 237 |  | 
|---|
|  | 238 | e=((p1+p2)+(p1-0.99*p2)); | 
|---|
|  | 239 | //e.prettyPrint(std::cout); | 
|---|
|  | 240 | //(e<=2).prettyPrint(std::cout); | 
|---|
|  | 241 | double tolerance=0.001; | 
|---|
|  | 242 | e.simplify(tolerance); | 
|---|
|  | 243 | buf << "Coeff. of p2 should be 0.01"; | 
|---|
|  | 244 | check(e[p2]>0, buf.str()); | 
|---|
|  | 245 |  | 
|---|
|  | 246 | tolerance=0.02; | 
|---|
|  | 247 | e.simplify(tolerance); | 
|---|
|  | 248 | buf << "Coeff. of p2 should be 0"; | 
|---|
| [459] | 249 | check(const_cast<const LpSolver::Expr&>(e)[p2]==0, buf.str()); | 
|---|
| [458] | 250 |  | 
|---|
| [540] | 251 | //Test for clone/new | 
|---|
|  | 252 | LP* lpnew = lp.newSolver(); | 
|---|
|  | 253 | LP* lpclone = lp.cloneSolver(); | 
|---|
|  | 254 | delete lpnew; | 
|---|
|  | 255 | delete lpclone; | 
|---|
| [458] | 256 |  | 
|---|
|  | 257 | } | 
|---|
|  | 258 |  | 
|---|
|  | 259 | { | 
|---|
|  | 260 | LP::DualExpr e,f,g; | 
|---|
| [1064] | 261 | LP::Row p1 = INVALID, p2 = INVALID; | 
|---|
| [458] | 262 |  | 
|---|
|  | 263 | e[p1]=2; | 
|---|
|  | 264 | e[p1]+=2; | 
|---|
|  | 265 | e[p1]-=2; | 
|---|
|  | 266 |  | 
|---|
|  | 267 | e=p1; | 
|---|
|  | 268 | e=f; | 
|---|
|  | 269 |  | 
|---|
|  | 270 | e+=p1; | 
|---|
|  | 271 | e+=f; | 
|---|
|  | 272 |  | 
|---|
|  | 273 | e-=p1; | 
|---|
|  | 274 | e-=f; | 
|---|
|  | 275 |  | 
|---|
|  | 276 | e*=2; | 
|---|
|  | 277 | e*=2.2; | 
|---|
|  | 278 | e/=2; | 
|---|
|  | 279 | e/=2.2; | 
|---|
|  | 280 |  | 
|---|
|  | 281 | e=((p1+p2)+(p1-p2)+ | 
|---|
|  | 282 | (p1+f)+(f+p1)+(f+g)+ | 
|---|
|  | 283 | (p1-f)+(f-p1)+(f-g)+ | 
|---|
|  | 284 | 2.2*f+f*2.2+f/2.2+ | 
|---|
|  | 285 | 2*f+f*2+f/2+ | 
|---|
|  | 286 | 2.2*p1+p1*2.2+p1/2.2+ | 
|---|
|  | 287 | 2*p1+p1*2+p1/2 | 
|---|
|  | 288 | ); | 
|---|
|  | 289 | } | 
|---|
|  | 290 |  | 
|---|
|  | 291 | } | 
|---|
|  | 292 |  | 
|---|
| [459] | 293 | void solveAndCheck(LpSolver& lp, LpSolver::ProblemType stat, | 
|---|
| [458] | 294 | double exp_opt) { | 
|---|
|  | 295 | using std::string; | 
|---|
|  | 296 | lp.solve(); | 
|---|
| [459] | 297 |  | 
|---|
| [458] | 298 | std::ostringstream buf; | 
|---|
| [459] | 299 | buf << "PrimalType should be: " << int(stat) << int(lp.primalType()); | 
|---|
| [458] | 300 |  | 
|---|
| [459] | 301 | check(lp.primalType()==stat, buf.str()); | 
|---|
| [458] | 302 |  | 
|---|
| [459] | 303 | if (stat ==  LpSolver::OPTIMAL) { | 
|---|
| [458] | 304 | std::ostringstream sbuf; | 
|---|
| [540] | 305 | sbuf << "Wrong optimal value (" << lp.primal() <<") with " | 
|---|
|  | 306 | << lp.solverName() <<"\n     the right optimum is " << exp_opt; | 
|---|
| [459] | 307 | check(std::abs(lp.primal()-exp_opt) < 1e-3, sbuf.str()); | 
|---|
| [458] | 308 | } | 
|---|
|  | 309 | } | 
|---|
|  | 310 |  | 
|---|
| [459] | 311 | void aTest(LpSolver & lp) | 
|---|
| [458] | 312 | { | 
|---|
| [459] | 313 | typedef LpSolver LP; | 
|---|
| [458] | 314 |  | 
|---|
|  | 315 | //The following example is very simple | 
|---|
|  | 316 |  | 
|---|
| [459] | 317 | typedef LpSolver::Row Row; | 
|---|
|  | 318 | typedef LpSolver::Col Col; | 
|---|
| [458] | 319 |  | 
|---|
|  | 320 |  | 
|---|
|  | 321 | Col x1 = lp.addCol(); | 
|---|
|  | 322 | Col x2 = lp.addCol(); | 
|---|
|  | 323 |  | 
|---|
|  | 324 |  | 
|---|
|  | 325 | //Constraints | 
|---|
| [459] | 326 | Row upright=lp.addRow(x1+2*x2 <=1); | 
|---|
| [458] | 327 | lp.addRow(x1+x2 >=-1); | 
|---|
|  | 328 | lp.addRow(x1-x2 <=1); | 
|---|
|  | 329 | lp.addRow(x1-x2 >=-1); | 
|---|
|  | 330 | //Nonnegativity of the variables | 
|---|
|  | 331 | lp.colLowerBound(x1, 0); | 
|---|
|  | 332 | lp.colLowerBound(x2, 0); | 
|---|
|  | 333 | //Objective function | 
|---|
|  | 334 | lp.obj(x1+x2); | 
|---|
|  | 335 |  | 
|---|
| [459] | 336 | lp.sense(lp.MAX); | 
|---|
| [458] | 337 |  | 
|---|
|  | 338 | //Testing the problem retrieving routines | 
|---|
|  | 339 | check(lp.objCoeff(x1)==1,"First term should be 1 in the obj function!"); | 
|---|
| [459] | 340 | check(lp.sense() == lp.MAX,"This is a maximization!"); | 
|---|
| [458] | 341 | check(lp.coeff(upright,x1)==1,"The coefficient in question is 1!"); | 
|---|
| [459] | 342 | check(lp.colLowerBound(x1)==0, | 
|---|
|  | 343 | "The lower bound for variable x1 should be 0."); | 
|---|
|  | 344 | check(lp.colUpperBound(x1)==LpSolver::INF, | 
|---|
|  | 345 | "The upper bound for variable x1 should be infty."); | 
|---|
|  | 346 | check(lp.rowLowerBound(upright) == -LpSolver::INF, | 
|---|
|  | 347 | "The lower bound for the first row should be -infty."); | 
|---|
|  | 348 | check(lp.rowUpperBound(upright)==1, | 
|---|
|  | 349 | "The upper bound for the first row should be 1."); | 
|---|
|  | 350 | LpSolver::Expr e = lp.row(upright); | 
|---|
|  | 351 | check(e[x1] == 1, "The first coefficient should 1."); | 
|---|
|  | 352 | check(e[x2] == 2, "The second coefficient should 1."); | 
|---|
| [458] | 353 |  | 
|---|
| [459] | 354 | lp.row(upright, x1+x2 <=1); | 
|---|
|  | 355 | e = lp.row(upright); | 
|---|
|  | 356 | check(e[x1] == 1, "The first coefficient should 1."); | 
|---|
|  | 357 | check(e[x2] == 1, "The second coefficient should 1."); | 
|---|
|  | 358 |  | 
|---|
|  | 359 | LpSolver::DualExpr de = lp.col(x1); | 
|---|
| [458] | 360 | check(  de[upright] == 1, "The first coefficient should 1."); | 
|---|
|  | 361 |  | 
|---|
| [459] | 362 | LpSolver* clp = lp.cloneSolver(); | 
|---|
| [458] | 363 |  | 
|---|
|  | 364 | //Testing the problem retrieving routines | 
|---|
|  | 365 | check(clp->objCoeff(x1)==1,"First term should be 1 in the obj function!"); | 
|---|
| [459] | 366 | check(clp->sense() == clp->MAX,"This is a maximization!"); | 
|---|
| [458] | 367 | check(clp->coeff(upright,x1)==1,"The coefficient in question is 1!"); | 
|---|
|  | 368 | //  std::cout<<lp.colLowerBound(x1)<<std::endl; | 
|---|
| [459] | 369 | check(clp->colLowerBound(x1)==0, | 
|---|
|  | 370 | "The lower bound for variable x1 should be 0."); | 
|---|
|  | 371 | check(clp->colUpperBound(x1)==LpSolver::INF, | 
|---|
|  | 372 | "The upper bound for variable x1 should be infty."); | 
|---|
| [458] | 373 |  | 
|---|
| [459] | 374 | check(lp.rowLowerBound(upright)==-LpSolver::INF, | 
|---|
|  | 375 | "The lower bound for the first row should be -infty."); | 
|---|
|  | 376 | check(lp.rowUpperBound(upright)==1, | 
|---|
|  | 377 | "The upper bound for the first row should be 1."); | 
|---|
| [458] | 378 | e = clp->row(upright); | 
|---|
| [459] | 379 | check(e[x1] == 1, "The first coefficient should 1."); | 
|---|
|  | 380 | check(e[x2] == 1, "The second coefficient should 1."); | 
|---|
| [458] | 381 |  | 
|---|
|  | 382 | de = clp->col(x1); | 
|---|
| [459] | 383 | check(de[upright] == 1, "The first coefficient should 1."); | 
|---|
| [458] | 384 |  | 
|---|
|  | 385 | delete clp; | 
|---|
|  | 386 |  | 
|---|
|  | 387 | //Maximization of x1+x2 | 
|---|
|  | 388 | //over the triangle with vertices (0,0) (0,1) (1,0) | 
|---|
|  | 389 | double expected_opt=1; | 
|---|
| [459] | 390 | solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt); | 
|---|
| [458] | 391 |  | 
|---|
|  | 392 | //Minimization | 
|---|
| [459] | 393 | lp.sense(lp.MIN); | 
|---|
| [458] | 394 | expected_opt=0; | 
|---|
| [459] | 395 | solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt); | 
|---|
| [458] | 396 |  | 
|---|
|  | 397 | //Vertex (-1,0) instead of (0,0) | 
|---|
| [459] | 398 | lp.colLowerBound(x1, -LpSolver::INF); | 
|---|
| [458] | 399 | expected_opt=-1; | 
|---|
| [459] | 400 | solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt); | 
|---|
| [458] | 401 |  | 
|---|
|  | 402 | //Erase one constraint and return to maximization | 
|---|
| [459] | 403 | lp.erase(upright); | 
|---|
|  | 404 | lp.sense(lp.MAX); | 
|---|
|  | 405 | expected_opt=LpSolver::INF; | 
|---|
|  | 406 | solveAndCheck(lp, LpSolver::UNBOUNDED, expected_opt); | 
|---|
| [458] | 407 |  | 
|---|
|  | 408 | //Infeasibilty | 
|---|
|  | 409 | lp.addRow(x1+x2 <=-2); | 
|---|
| [459] | 410 | solveAndCheck(lp, LpSolver::INFEASIBLE, expected_opt); | 
|---|
| [458] | 411 |  | 
|---|
|  | 412 | } | 
|---|
|  | 413 |  | 
|---|
| [540] | 414 | template<class LP> | 
|---|
|  | 415 | void cloneTest() | 
|---|
|  | 416 | { | 
|---|
|  | 417 | //Test for clone/new | 
|---|
| [551] | 418 |  | 
|---|
| [540] | 419 | LP* lp = new LP(); | 
|---|
|  | 420 | LP* lpnew = lp->newSolver(); | 
|---|
|  | 421 | LP* lpclone = lp->cloneSolver(); | 
|---|
|  | 422 | delete lp; | 
|---|
|  | 423 | delete lpnew; | 
|---|
|  | 424 | delete lpclone; | 
|---|
|  | 425 | } | 
|---|
|  | 426 |  | 
|---|
| [458] | 427 | int main() | 
|---|
|  | 428 | { | 
|---|
|  | 429 | LpSkeleton lp_skel; | 
|---|
|  | 430 | lpTest(lp_skel); | 
|---|
|  | 431 |  | 
|---|
| [1105] | 432 | #ifdef LEMON_HAVE_LP | 
|---|
|  | 433 | { | 
|---|
|  | 434 | Lp lp,lp2; | 
|---|
|  | 435 | lpTest(lp); | 
|---|
|  | 436 | aTest(lp2); | 
|---|
|  | 437 | cloneTest<Lp>(); | 
|---|
|  | 438 | } | 
|---|
|  | 439 | #endif | 
|---|
|  | 440 |  | 
|---|
| [627] | 441 | #ifdef LEMON_HAVE_GLPK | 
|---|
| [459] | 442 | { | 
|---|
| [462] | 443 | GlpkLp lp_glpk1,lp_glpk2; | 
|---|
| [459] | 444 | lpTest(lp_glpk1); | 
|---|
|  | 445 | aTest(lp_glpk2); | 
|---|
| [540] | 446 | cloneTest<GlpkLp>(); | 
|---|
| [459] | 447 | } | 
|---|
| [458] | 448 | #endif | 
|---|
|  | 449 |  | 
|---|
| [627] | 450 | #ifdef LEMON_HAVE_CPLEX | 
|---|
| [459] | 451 | try { | 
|---|
| [462] | 452 | CplexLp lp_cplex1,lp_cplex2; | 
|---|
| [459] | 453 | lpTest(lp_cplex1); | 
|---|
|  | 454 | aTest(lp_cplex2); | 
|---|
| [551] | 455 | cloneTest<CplexLp>(); | 
|---|
| [459] | 456 | } catch (CplexEnv::LicenseError& error) { | 
|---|
|  | 457 | check(false, error.what()); | 
|---|
|  | 458 | } | 
|---|
| [458] | 459 | #endif | 
|---|
|  | 460 |  | 
|---|
| [627] | 461 | #ifdef LEMON_HAVE_SOPLEX | 
|---|
| [459] | 462 | { | 
|---|
| [462] | 463 | SoplexLp lp_soplex1,lp_soplex2; | 
|---|
| [459] | 464 | lpTest(lp_soplex1); | 
|---|
|  | 465 | aTest(lp_soplex2); | 
|---|
| [540] | 466 | cloneTest<SoplexLp>(); | 
|---|
| [459] | 467 | } | 
|---|
|  | 468 | #endif | 
|---|
|  | 469 |  | 
|---|
| [627] | 470 | #ifdef LEMON_HAVE_CLP | 
|---|
| [459] | 471 | { | 
|---|
| [462] | 472 | ClpLp lp_clp1,lp_clp2; | 
|---|
| [459] | 473 | lpTest(lp_clp1); | 
|---|
|  | 474 | aTest(lp_clp2); | 
|---|
| [540] | 475 | cloneTest<ClpLp>(); | 
|---|
| [459] | 476 | } | 
|---|
| [458] | 477 | #endif | 
|---|
|  | 478 |  | 
|---|
|  | 479 | return 0; | 
|---|
|  | 480 | } | 
|---|