| [458] | 1 | /* -*- mode: C++; indent-tabs-mode: nil; -*- | 
|---|
 | 2 |  * | 
|---|
 | 3 |  * This file is a part of LEMON, a generic C++ optimization library. | 
|---|
 | 4 |  * | 
|---|
| [551] | 5 |  * Copyright (C) 2003-2009 | 
|---|
| [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 "test_tools.h" | 
|---|
 | 20 |  | 
|---|
 | 21 | #include <lemon/config.h> | 
|---|
 | 22 |  | 
|---|
| [627] | 23 | #ifdef LEMON_HAVE_CPLEX | 
|---|
| [461] | 24 | #include <lemon/cplex.h> | 
|---|
| [458] | 25 | #endif | 
|---|
 | 26 |  | 
|---|
| [627] | 27 | #ifdef LEMON_HAVE_GLPK | 
|---|
| [461] | 28 | #include <lemon/glpk.h> | 
|---|
| [458] | 29 | #endif | 
|---|
 | 30 |  | 
|---|
| [627] | 31 | #ifdef LEMON_HAVE_CBC | 
|---|
| [567] | 32 | #include <lemon/cbc.h> | 
|---|
 | 33 | #endif | 
|---|
 | 34 |  | 
|---|
| [1105] | 35 | #ifdef LEMON_HAVE_MIP | 
|---|
 | 36 | #include <lemon/lp.h> | 
|---|
 | 37 | #endif | 
|---|
 | 38 |  | 
|---|
| [458] | 39 |  | 
|---|
 | 40 | using namespace lemon; | 
|---|
 | 41 |  | 
|---|
| [459] | 42 | void solveAndCheck(MipSolver& mip, MipSolver::ProblemType stat, | 
|---|
| [458] | 43 |                    double exp_opt) { | 
|---|
 | 44 |   using std::string; | 
|---|
 | 45 |  | 
|---|
| [459] | 46 |   mip.solve(); | 
|---|
| [458] | 47 |   //int decimal,sign; | 
|---|
 | 48 |   std::ostringstream buf; | 
|---|
| [459] | 49 |   buf << "Type should be: " << int(stat)<<" and it is "<<int(mip.type()); | 
|---|
| [458] | 50 |  | 
|---|
 | 51 |  | 
|---|
 | 52 |   //  itoa(stat,buf1, 10); | 
|---|
| [459] | 53 |   check(mip.type()==stat, buf.str()); | 
|---|
| [458] | 54 |  | 
|---|
| [459] | 55 |   if (stat ==  MipSolver::OPTIMAL) { | 
|---|
| [458] | 56 |     std::ostringstream sbuf; | 
|---|
| [748] | 57 |     sbuf << "Wrong optimal value ("<< mip.solValue() | 
|---|
 | 58 |          <<" instead of " << exp_opt << ")"; | 
|---|
| [459] | 59 |     check(std::abs(mip.solValue()-exp_opt) < 1e-3, sbuf.str()); | 
|---|
| [458] | 60 |     //+ecvt(exp_opt,2) | 
|---|
 | 61 |   } | 
|---|
 | 62 | } | 
|---|
 | 63 |  | 
|---|
| [459] | 64 | void aTest(MipSolver& mip) | 
|---|
| [458] | 65 | { | 
|---|
| [567] | 66 |   //The following example is very simple | 
|---|
| [458] | 67 |  | 
|---|
 | 68 |  | 
|---|
| [459] | 69 |   typedef MipSolver::Row Row; | 
|---|
 | 70 |   typedef MipSolver::Col Col; | 
|---|
| [458] | 71 |  | 
|---|
 | 72 |  | 
|---|
 | 73 |   Col x1 = mip.addCol(); | 
|---|
 | 74 |   Col x2 = mip.addCol(); | 
|---|
 | 75 |  | 
|---|
 | 76 |  | 
|---|
 | 77 |   //Objective function | 
|---|
 | 78 |   mip.obj(x1); | 
|---|
 | 79 |  | 
|---|
 | 80 |   mip.max(); | 
|---|
 | 81 |  | 
|---|
 | 82 |   //Unconstrained optimization | 
|---|
 | 83 |   mip.solve(); | 
|---|
 | 84 |   //Check it out! | 
|---|
 | 85 |  | 
|---|
 | 86 |   //Constraints | 
|---|
| [567] | 87 |   mip.addRow(2 * x1 + x2 <= 2); | 
|---|
 | 88 |   Row y2 = mip.addRow(x1 - 2 * x2 <= 0); | 
|---|
| [458] | 89 |  | 
|---|
 | 90 |   //Nonnegativity of the variable x1 | 
|---|
 | 91 |   mip.colLowerBound(x1, 0); | 
|---|
 | 92 |  | 
|---|
| [567] | 93 |  | 
|---|
| [458] | 94 |   //Maximization of x1 | 
|---|
 | 95 |   //over the triangle with vertices (0,0),(4/5,2/5),(0,2) | 
|---|
 | 96 |   double expected_opt=4.0/5.0; | 
|---|
| [459] | 97 |   solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt); | 
|---|
| [458] | 98 |  | 
|---|
| [567] | 99 |  | 
|---|
| [458] | 100 |   //Restrict x2 to integer | 
|---|
| [459] | 101 |   mip.colType(x2,MipSolver::INTEGER); | 
|---|
| [458] | 102 |   expected_opt=1.0/2.0; | 
|---|
| [459] | 103 |   solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt); | 
|---|
| [458] | 104 |  | 
|---|
 | 105 |  | 
|---|
 | 106 |   //Restrict both to integer | 
|---|
| [459] | 107 |   mip.colType(x1,MipSolver::INTEGER); | 
|---|
| [458] | 108 |   expected_opt=0; | 
|---|
| [459] | 109 |   solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt); | 
|---|
| [458] | 110 |  | 
|---|
| [567] | 111 |   //Erase a variable | 
|---|
 | 112 |   mip.erase(x2); | 
|---|
 | 113 |   mip.rowUpperBound(y2, 8); | 
|---|
 | 114 |   expected_opt=1; | 
|---|
 | 115 |   solveAndCheck(mip, MipSolver::OPTIMAL, expected_opt); | 
|---|
| [458] | 116 |  | 
|---|
 | 117 | } | 
|---|
 | 118 |  | 
|---|
| [567] | 119 |  | 
|---|
| [540] | 120 | template<class MIP> | 
|---|
 | 121 | void cloneTest() | 
|---|
 | 122 | { | 
|---|
| [551] | 123 |  | 
|---|
| [540] | 124 |   MIP* mip = new MIP(); | 
|---|
 | 125 |   MIP* mipnew = mip->newSolver(); | 
|---|
 | 126 |   MIP* mipclone = mip->cloneSolver(); | 
|---|
 | 127 |   delete mip; | 
|---|
 | 128 |   delete mipnew; | 
|---|
 | 129 |   delete mipclone; | 
|---|
 | 130 | } | 
|---|
| [458] | 131 |  | 
|---|
 | 132 | int main() | 
|---|
 | 133 | { | 
|---|
 | 134 |  | 
|---|
| [1105] | 135 | #ifdef LEMON_HAVE_MIP | 
|---|
 | 136 |   { | 
|---|
 | 137 |     Mip mip1; | 
|---|
 | 138 |     aTest(mip1); | 
|---|
 | 139 |     cloneTest<Mip>(); | 
|---|
 | 140 |   } | 
|---|
 | 141 | #endif | 
|---|
 | 142 |  | 
|---|
| [627] | 143 | #ifdef LEMON_HAVE_GLPK | 
|---|
| [459] | 144 |   { | 
|---|
| [462] | 145 |     GlpkMip mip1; | 
|---|
| [459] | 146 |     aTest(mip1); | 
|---|
| [540] | 147 |     cloneTest<GlpkMip>(); | 
|---|
| [459] | 148 |   } | 
|---|
| [458] | 149 | #endif | 
|---|
 | 150 |  | 
|---|
| [627] | 151 | #ifdef LEMON_HAVE_CPLEX | 
|---|
| [459] | 152 |   try { | 
|---|
| [462] | 153 |     CplexMip mip2; | 
|---|
| [459] | 154 |     aTest(mip2); | 
|---|
| [551] | 155 |     cloneTest<CplexMip>(); | 
|---|
| [459] | 156 |   } catch (CplexEnv::LicenseError& error) { | 
|---|
 | 157 |     check(false, error.what()); | 
|---|
 | 158 |   } | 
|---|
| [458] | 159 | #endif | 
|---|
 | 160 |  | 
|---|
| [627] | 161 | #ifdef LEMON_HAVE_CBC | 
|---|
| [567] | 162 |   { | 
|---|
 | 163 |     CbcMip mip1; | 
|---|
 | 164 |     aTest(mip1); | 
|---|
 | 165 |     cloneTest<CbcMip>(); | 
|---|
 | 166 |   } | 
|---|
 | 167 | #endif | 
|---|
 | 168 |  | 
|---|
| [458] | 169 |   return 0; | 
|---|
 | 170 |  | 
|---|
 | 171 | } | 
|---|