[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!"); |
---|
[1205] | 342 | check(lp.coeff(upright,x2)==2,"The coefficient in question is 1!"); |
---|
[459] | 343 | check(lp.colLowerBound(x1)==0, |
---|
| 344 | "The lower bound for variable x1 should be 0."); |
---|
| 345 | check(lp.colUpperBound(x1)==LpSolver::INF, |
---|
| 346 | "The upper bound for variable x1 should be infty."); |
---|
| 347 | check(lp.rowLowerBound(upright) == -LpSolver::INF, |
---|
| 348 | "The lower bound for the first row should be -infty."); |
---|
| 349 | check(lp.rowUpperBound(upright)==1, |
---|
| 350 | "The upper bound for the first row should be 1."); |
---|
| 351 | LpSolver::Expr e = lp.row(upright); |
---|
| 352 | check(e[x1] == 1, "The first coefficient should 1."); |
---|
| 353 | check(e[x2] == 2, "The second coefficient should 1."); |
---|
[458] | 354 | |
---|
[459] | 355 | lp.row(upright, x1+x2 <=1); |
---|
| 356 | e = lp.row(upright); |
---|
| 357 | check(e[x1] == 1, "The first coefficient should 1."); |
---|
| 358 | check(e[x2] == 1, "The second coefficient should 1."); |
---|
| 359 | |
---|
| 360 | LpSolver::DualExpr de = lp.col(x1); |
---|
[458] | 361 | check( de[upright] == 1, "The first coefficient should 1."); |
---|
| 362 | |
---|
[459] | 363 | LpSolver* clp = lp.cloneSolver(); |
---|
[458] | 364 | |
---|
| 365 | //Testing the problem retrieving routines |
---|
| 366 | check(clp->objCoeff(x1)==1,"First term should be 1 in the obj function!"); |
---|
[459] | 367 | check(clp->sense() == clp->MAX,"This is a maximization!"); |
---|
[458] | 368 | check(clp->coeff(upright,x1)==1,"The coefficient in question is 1!"); |
---|
| 369 | // std::cout<<lp.colLowerBound(x1)<<std::endl; |
---|
[459] | 370 | check(clp->colLowerBound(x1)==0, |
---|
| 371 | "The lower bound for variable x1 should be 0."); |
---|
| 372 | check(clp->colUpperBound(x1)==LpSolver::INF, |
---|
| 373 | "The upper bound for variable x1 should be infty."); |
---|
[458] | 374 | |
---|
[459] | 375 | check(lp.rowLowerBound(upright)==-LpSolver::INF, |
---|
| 376 | "The lower bound for the first row should be -infty."); |
---|
| 377 | check(lp.rowUpperBound(upright)==1, |
---|
| 378 | "The upper bound for the first row should be 1."); |
---|
[458] | 379 | e = clp->row(upright); |
---|
[459] | 380 | check(e[x1] == 1, "The first coefficient should 1."); |
---|
| 381 | check(e[x2] == 1, "The second coefficient should 1."); |
---|
[458] | 382 | |
---|
| 383 | de = clp->col(x1); |
---|
[459] | 384 | check(de[upright] == 1, "The first coefficient should 1."); |
---|
[458] | 385 | |
---|
| 386 | delete clp; |
---|
| 387 | |
---|
| 388 | //Maximization of x1+x2 |
---|
| 389 | //over the triangle with vertices (0,0) (0,1) (1,0) |
---|
| 390 | double expected_opt=1; |
---|
[459] | 391 | solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt); |
---|
[458] | 392 | |
---|
| 393 | //Minimization |
---|
[459] | 394 | lp.sense(lp.MIN); |
---|
[458] | 395 | expected_opt=0; |
---|
[459] | 396 | solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt); |
---|
[458] | 397 | |
---|
| 398 | //Vertex (-1,0) instead of (0,0) |
---|
[459] | 399 | lp.colLowerBound(x1, -LpSolver::INF); |
---|
[458] | 400 | expected_opt=-1; |
---|
[459] | 401 | solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt); |
---|
[458] | 402 | |
---|
| 403 | //Erase one constraint and return to maximization |
---|
[459] | 404 | lp.erase(upright); |
---|
| 405 | lp.sense(lp.MAX); |
---|
| 406 | expected_opt=LpSolver::INF; |
---|
| 407 | solveAndCheck(lp, LpSolver::UNBOUNDED, expected_opt); |
---|
[458] | 408 | |
---|
| 409 | //Infeasibilty |
---|
| 410 | lp.addRow(x1+x2 <=-2); |
---|
[459] | 411 | solveAndCheck(lp, LpSolver::INFEASIBLE, expected_opt); |
---|
[458] | 412 | |
---|
| 413 | } |
---|
| 414 | |
---|
[540] | 415 | template<class LP> |
---|
| 416 | void cloneTest() |
---|
| 417 | { |
---|
| 418 | //Test for clone/new |
---|
[551] | 419 | |
---|
[540] | 420 | LP* lp = new LP(); |
---|
| 421 | LP* lpnew = lp->newSolver(); |
---|
| 422 | LP* lpclone = lp->cloneSolver(); |
---|
| 423 | delete lp; |
---|
| 424 | delete lpnew; |
---|
| 425 | delete lpclone; |
---|
| 426 | } |
---|
| 427 | |
---|
[1205] | 428 | template<class LP> |
---|
| 429 | void rangeConstraintTest() |
---|
| 430 | { |
---|
| 431 | LP lp; |
---|
| 432 | // Add two columns (variables) to the problem |
---|
| 433 | typename LP::Col x1 = lp.addCol(); |
---|
| 434 | typename LP::Col x2 = lp.addCol(); |
---|
| 435 | // Add rows (constraints) to the problem |
---|
| 436 | lp.addRow(x1 - 5 <= x2); |
---|
| 437 | lp.addRow(0 <= 2 * x1 + x2 <= 25); |
---|
| 438 | |
---|
| 439 | // Set lower and upper bounds for the columns (variables) |
---|
| 440 | lp.colLowerBound(x1, 0); |
---|
| 441 | lp.colUpperBound(x2, 10); |
---|
| 442 | |
---|
| 443 | // Specify the objective function |
---|
| 444 | lp.max(); |
---|
| 445 | lp.obj(5 * x1 + 3 * x2); |
---|
| 446 | |
---|
| 447 | // Solve the problem using the underlying LP solver |
---|
| 448 | lp.solve(); |
---|
| 449 | // Print the results |
---|
| 450 | check(lp.primalType() == LP::OPTIMAL, "Optimal solution is not found"); |
---|
| 451 | check(lp.primal() <= 67.501 && lp.primal() >= 67.499, "Wrong objective value"); |
---|
| 452 | check(lp.primal(x1) <= 7.501 && lp.primal(x1) >= 7.499, "Wrong value for x1"); |
---|
| 453 | check(lp.primal(x2) <= 10.001 && lp.primal(x2) >= 9.999, "Wrong value for x2"); |
---|
| 454 | } |
---|
| 455 | |
---|
[458] | 456 | int main() |
---|
| 457 | { |
---|
| 458 | LpSkeleton lp_skel; |
---|
| 459 | lpTest(lp_skel); |
---|
| 460 | |
---|
[1105] | 461 | #ifdef LEMON_HAVE_LP |
---|
| 462 | { |
---|
| 463 | Lp lp,lp2; |
---|
| 464 | lpTest(lp); |
---|
| 465 | aTest(lp2); |
---|
| 466 | cloneTest<Lp>(); |
---|
| 467 | } |
---|
| 468 | #endif |
---|
| 469 | |
---|
[627] | 470 | #ifdef LEMON_HAVE_GLPK |
---|
[459] | 471 | { |
---|
[462] | 472 | GlpkLp lp_glpk1,lp_glpk2; |
---|
[459] | 473 | lpTest(lp_glpk1); |
---|
| 474 | aTest(lp_glpk2); |
---|
[540] | 475 | cloneTest<GlpkLp>(); |
---|
[1205] | 476 | rangeConstraintTest<GlpkLp>(); |
---|
[459] | 477 | } |
---|
[458] | 478 | #endif |
---|
| 479 | |
---|
[627] | 480 | #ifdef LEMON_HAVE_CPLEX |
---|
[459] | 481 | try { |
---|
[462] | 482 | CplexLp lp_cplex1,lp_cplex2; |
---|
[459] | 483 | lpTest(lp_cplex1); |
---|
| 484 | aTest(lp_cplex2); |
---|
[551] | 485 | cloneTest<CplexLp>(); |
---|
[1205] | 486 | rangeConstraintTest<CplexLp>(); |
---|
[459] | 487 | } catch (CplexEnv::LicenseError& error) { |
---|
| 488 | check(false, error.what()); |
---|
| 489 | } |
---|
[458] | 490 | #endif |
---|
| 491 | |
---|
[627] | 492 | #ifdef LEMON_HAVE_SOPLEX |
---|
[459] | 493 | { |
---|
[462] | 494 | SoplexLp lp_soplex1,lp_soplex2; |
---|
[459] | 495 | lpTest(lp_soplex1); |
---|
| 496 | aTest(lp_soplex2); |
---|
[540] | 497 | cloneTest<SoplexLp>(); |
---|
[1205] | 498 | rangeConstraintTest<Soplex>(); |
---|
[459] | 499 | } |
---|
| 500 | #endif |
---|
| 501 | |
---|
[627] | 502 | #ifdef LEMON_HAVE_CLP |
---|
[459] | 503 | { |
---|
[462] | 504 | ClpLp lp_clp1,lp_clp2; |
---|
[459] | 505 | lpTest(lp_clp1); |
---|
| 506 | aTest(lp_clp2); |
---|
[540] | 507 | cloneTest<ClpLp>(); |
---|
[1205] | 508 | rangeConstraintTest<ClpLp>(); |
---|
[459] | 509 | } |
---|
[458] | 510 | #endif |
---|
| 511 | |
---|
| 512 | return 0; |
---|
| 513 | } |
---|