1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2009
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 #include <lemon/lp_skeleton.h>
21 #include "test_tools.h"
22 #include <lemon/tolerance.h>
24 #include <lemon/config.h>
26 #ifdef LEMON_HAVE_GLPK
27 #include <lemon/glpk.h>
30 #ifdef LEMON_HAVE_CPLEX
31 #include <lemon/cplex.h>
34 #ifdef LEMON_HAVE_SOPLEX
35 #include <lemon/soplex.h>
39 #include <lemon/clp.h>
42 using namespace lemon;
44 int countCols(LpBase & lp) {
46 for (LpBase::ColIt c(lp); c!=INVALID; ++c) ++count;
50 int countRows(LpBase & lp) {
52 for (LpBase::RowIt r(lp); r!=INVALID; ++r) ++count;
57 void lpTest(LpSolver& lp)
62 // Test LpBase::clear()
63 check(countRows(lp)==0, "Wrong number of rows");
64 check(countCols(lp)==0, "Wrong number of cols");
65 lp.addCol(); lp.addRow(); lp.addRow();
66 check(countRows(lp)==2, "Wrong number of rows");
67 check(countCols(lp)==1, "Wrong number of cols");
69 check(countRows(lp)==0, "Wrong number of rows");
70 check(countCols(lp)==0, "Wrong number of cols");
71 lp.addCol(); lp.addCol(); lp.addCol(); lp.addRow();
72 check(countRows(lp)==1, "Wrong number of rows");
73 check(countCols(lp)==3, "Wrong number of cols");
76 std::vector<LP::Col> x(10);
77 // for(int i=0;i<10;i++) x.push_back(lp.addCol());
79 lp.colLowerBound(x,1);
80 lp.colUpperBound(x,1);
83 std::vector<LP::Col> y(10);
86 lp.colLowerBound(y,1);
87 lp.colUpperBound(y,1);
90 std::map<int,LP::Col> z;
92 z.insert(std::make_pair(12,INVALID));
93 z.insert(std::make_pair(2,INVALID));
94 z.insert(std::make_pair(7,INVALID));
95 z.insert(std::make_pair(5,INVALID));
99 lp.colLowerBound(z,1);
100 lp.colUpperBound(z,1);
105 LP::Col p1,p2,p3,p4,p5;
141 e=((p1+p2)+(p1-p2)+(p1+12)+(12+p1)+(p1-12)+(12-p1)+
142 (f+12)+(12+f)+(p1+f)+(f+p1)+(f+g)+
143 (f-12)+(12-f)+(p1-f)+(f-p1)+(f-g)+
146 2.2*p1+p1*2.2+p1/2.2+
191 c = ((2 <= p1) <= 3);
194 c = ((2 >= p1) >= 3);
197 LP::Col v=lp.addCol();
198 LP::Constr c = v >= -3;
209 lp.addRow(-LP::INF,e,23);
210 lp.addRow(-LP::INF,3.0*(x[1]+x[2]/2)-x[3],23);
211 lp.addRow(-LP::INF,3.0*(x[1]+x[2]*2-5*x[3]+12-x[4]/3)+2*x[4]-4,23);
213 lp.addRow(x[1]+x[3]<=x[5]-3);
214 lp.addRow((-7<=x[1]+x[3]-12)<=3);
215 lp.addRow(x[1]<=x[5]);
217 std::ostringstream buf;
220 e=((p1+p2)+(p1-0.99*p2));
221 //e.prettyPrint(std::cout);
222 //(e<=2).prettyPrint(std::cout);
223 double tolerance=0.001;
224 e.simplify(tolerance);
225 buf << "Coeff. of p2 should be 0.01";
226 check(e[p2]>0, buf.str());
229 e.simplify(tolerance);
230 buf << "Coeff. of p2 should be 0";
231 check(const_cast<const LpSolver::Expr&>(e)[p2]==0, buf.str());
234 LP* lpnew = lp.newSolver();
235 LP* lpclone = lp.cloneSolver();
243 LP::Row p1 = INVALID, p2 = INVALID, p3 = INVALID,
244 p4 = INVALID, p5 = INVALID;
269 2.2*p1+p1*2.2+p1/2.2+
276 void solveAndCheck(LpSolver& lp, LpSolver::ProblemType stat,
281 std::ostringstream buf;
282 buf << "PrimalType should be: " << int(stat) << int(lp.primalType());
284 check(lp.primalType()==stat, buf.str());
286 if (stat == LpSolver::OPTIMAL) {
287 std::ostringstream sbuf;
288 sbuf << "Wrong optimal value (" << lp.primal() <<") with "
289 << lp.solverName() <<"\n the right optimum is " << exp_opt;
290 check(std::abs(lp.primal()-exp_opt) < 1e-3, sbuf.str());
294 void aTest(LpSolver & lp)
298 //The following example is very simple
300 typedef LpSolver::Row Row;
301 typedef LpSolver::Col Col;
304 Col x1 = lp.addCol();
305 Col x2 = lp.addCol();
309 Row upright=lp.addRow(x1+2*x2 <=1);
310 lp.addRow(x1+x2 >=-1);
311 lp.addRow(x1-x2 <=1);
312 lp.addRow(x1-x2 >=-1);
313 //Nonnegativity of the variables
314 lp.colLowerBound(x1, 0);
315 lp.colLowerBound(x2, 0);
321 //Testing the problem retrieving routines
322 check(lp.objCoeff(x1)==1,"First term should be 1 in the obj function!");
323 check(lp.sense() == lp.MAX,"This is a maximization!");
324 check(lp.coeff(upright,x1)==1,"The coefficient in question is 1!");
325 check(lp.colLowerBound(x1)==0,
326 "The lower bound for variable x1 should be 0.");
327 check(lp.colUpperBound(x1)==LpSolver::INF,
328 "The upper bound for variable x1 should be infty.");
329 check(lp.rowLowerBound(upright) == -LpSolver::INF,
330 "The lower bound for the first row should be -infty.");
331 check(lp.rowUpperBound(upright)==1,
332 "The upper bound for the first row should be 1.");
333 LpSolver::Expr e = lp.row(upright);
334 check(e[x1] == 1, "The first coefficient should 1.");
335 check(e[x2] == 2, "The second coefficient should 1.");
337 lp.row(upright, x1+x2 <=1);
339 check(e[x1] == 1, "The first coefficient should 1.");
340 check(e[x2] == 1, "The second coefficient should 1.");
342 LpSolver::DualExpr de = lp.col(x1);
343 check( de[upright] == 1, "The first coefficient should 1.");
345 LpSolver* clp = lp.cloneSolver();
347 //Testing the problem retrieving routines
348 check(clp->objCoeff(x1)==1,"First term should be 1 in the obj function!");
349 check(clp->sense() == clp->MAX,"This is a maximization!");
350 check(clp->coeff(upright,x1)==1,"The coefficient in question is 1!");
351 // std::cout<<lp.colLowerBound(x1)<<std::endl;
352 check(clp->colLowerBound(x1)==0,
353 "The lower bound for variable x1 should be 0.");
354 check(clp->colUpperBound(x1)==LpSolver::INF,
355 "The upper bound for variable x1 should be infty.");
357 check(lp.rowLowerBound(upright)==-LpSolver::INF,
358 "The lower bound for the first row should be -infty.");
359 check(lp.rowUpperBound(upright)==1,
360 "The upper bound for the first row should be 1.");
361 e = clp->row(upright);
362 check(e[x1] == 1, "The first coefficient should 1.");
363 check(e[x2] == 1, "The second coefficient should 1.");
366 check(de[upright] == 1, "The first coefficient should 1.");
370 //Maximization of x1+x2
371 //over the triangle with vertices (0,0) (0,1) (1,0)
372 double expected_opt=1;
373 solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt);
378 solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt);
380 //Vertex (-1,0) instead of (0,0)
381 lp.colLowerBound(x1, -LpSolver::INF);
383 solveAndCheck(lp, LpSolver::OPTIMAL, expected_opt);
385 //Erase one constraint and return to maximization
388 expected_opt=LpSolver::INF;
389 solveAndCheck(lp, LpSolver::UNBOUNDED, expected_opt);
392 lp.addRow(x1+x2 <=-2);
393 solveAndCheck(lp, LpSolver::INFEASIBLE, expected_opt);
403 LP* lpnew = lp->newSolver();
404 LP* lpclone = lp->cloneSolver();
415 #ifdef LEMON_HAVE_GLPK
417 GlpkLp lp_glpk1,lp_glpk2;
424 #ifdef LEMON_HAVE_CPLEX
426 CplexLp lp_cplex1,lp_cplex2;
429 cloneTest<CplexLp>();
430 } catch (CplexEnv::LicenseError& error) {
431 check(false, error.what());
435 #ifdef LEMON_HAVE_SOPLEX
437 SoplexLp lp_soplex1,lp_soplex2;
440 cloneTest<SoplexLp>();
444 #ifdef LEMON_HAVE_CLP
446 ClpLp lp_clp1,lp_clp2;