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
19 #include "test_tools.h"
21 #include <lemon/config.h>
23 #ifdef LEMON_HAVE_CPLEX
24 #include <lemon/cplex.h>
27 #ifdef LEMON_HAVE_GLPK
28 #include <lemon/glpk.h>
32 #include <lemon/cbc.h>
36 using namespace lemon;
38 void solveAndCheck(MipSolver& mip, MipSolver::ProblemType stat,
44 std::ostringstream buf;
45 buf << "Type should be: " << int(stat)<<" and it is "<<int(mip.type());
48 // itoa(stat,buf1, 10);
49 check(mip.type()==stat, buf.str());
51 if (stat == MipSolver::OPTIMAL) {
52 std::ostringstream sbuf;
53 buf << "Wrong optimal value: the right optimum is " << exp_opt;
54 check(std::abs(mip.solValue()-exp_opt) < 1e-3, sbuf.str());
59 void aTest(MipSolver& mip)
61 //The following example is very simple
64 typedef MipSolver::Row Row;
65 typedef MipSolver::Col Col;
68 Col x1 = mip.addCol();
69 Col x2 = mip.addCol();
77 //Unconstrained optimization
82 mip.addRow(2 * x1 + x2 <= 2);
83 Row y2 = mip.addRow(x1 - 2 * x2 <= 0);
85 //Nonnegativity of the variable x1
86 mip.colLowerBound(x1, 0);
90 //over the triangle with vertices (0,0),(4/5,2/5),(0,2)
91 double expected_opt=4.0/5.0;
92 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
95 //Restrict x2 to integer
96 mip.colType(x2,MipSolver::INTEGER);
98 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
101 //Restrict both to integer
102 mip.colType(x1,MipSolver::INTEGER);
104 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
108 mip.rowUpperBound(y2, 8);
110 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
119 MIP* mip = new MIP();
120 MIP* mipnew = mip->newSolver();
121 MIP* mipclone = mip->cloneSolver();
130 #ifdef LEMON_HAVE_GLPK
134 cloneTest<GlpkMip>();
138 #ifdef LEMON_HAVE_CPLEX
142 cloneTest<CplexMip>();
143 } catch (CplexEnv::LicenseError& error) {
144 check(false, error.what());
148 #ifdef LEMON_HAVE_CBC