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>
40 using namespace lemon;
42 void solveAndCheck(MipSolver& mip, MipSolver::ProblemType stat,
48 std::ostringstream buf;
49 buf << "Type should be: " << int(stat)<<" and it is "<<int(mip.type());
52 // itoa(stat,buf1, 10);
53 check(mip.type()==stat, buf.str());
55 if (stat == MipSolver::OPTIMAL) {
56 std::ostringstream sbuf;
57 sbuf << "Wrong optimal value ("<< mip.solValue()
58 <<" instead of " << exp_opt << ")";
59 check(std::abs(mip.solValue()-exp_opt) < 1e-3, sbuf.str());
64 void aTest(MipSolver& mip)
66 //The following example is very simple
69 typedef MipSolver::Row Row;
70 typedef MipSolver::Col Col;
73 Col x1 = mip.addCol();
74 Col x2 = mip.addCol();
82 //Unconstrained optimization
87 mip.addRow(2 * x1 + x2 <= 2);
88 Row y2 = mip.addRow(x1 - 2 * x2 <= 0);
90 //Nonnegativity of the variable x1
91 mip.colLowerBound(x1, 0);
95 //over the triangle with vertices (0,0),(4/5,2/5),(0,2)
96 double expected_opt=4.0/5.0;
97 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
100 //Restrict x2 to integer
101 mip.colType(x2,MipSolver::INTEGER);
102 expected_opt=1.0/2.0;
103 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
106 //Restrict both to integer
107 mip.colType(x1,MipSolver::INTEGER);
109 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
113 mip.rowUpperBound(y2, 8);
115 solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt);
124 MIP* mip = new MIP();
125 MIP* mipnew = mip->newSolver();
126 MIP* mipclone = mip->cloneSolver();
135 #ifdef LEMON_HAVE_MIP
143 #ifdef LEMON_HAVE_GLPK
147 cloneTest<GlpkMip>();
151 #ifdef LEMON_HAVE_CPLEX
155 cloneTest<CplexMip>();
156 } catch (CplexEnv::LicenseError& error) {
157 check(false, error.what());
161 #ifdef LEMON_HAVE_CBC