Various improvements in NetworkSimplex.
- Faster variant of "Altering Candidate List" pivot rule using make_heap
instead of partial_sort.
- Doc improvements.
- Removing unecessary inline keywords.
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2008
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
21 ///\brief Mixed integer program solver demo
23 /// This example shows how can we solve an integer program with lemon
24 /// \c Mip interface and with default solver.
26 /// \include mip_demo.cc
30 using namespace lemon;
42 Col x1 = ilp.addCol();
43 Col x2 = ilp.addCol();
44 Col x3 = ilp.addCol();
50 ilp.addRow(x1+x2+x3 <=100);
51 ilp.addRow(10*x1+4*x2+5*x3<=600);
52 ilp.addRow(2*x1+2*x2+6*x3<=300);
54 ilp.colLowerBound(x1, 0);
55 ilp.colLowerBound(x2, 0);
56 ilp.colLowerBound(x3, 0);
58 ilp.obj(10*x1+6*x2+4*x3);
60 //Call the routine of the underlying LP solver
64 if (ilp.primalStatus()==LpSolverBase::OPTIMAL){
65 std::cout<<"Optimal solution found!"<<std::endl;
66 printf("optimum value = %g; x1 = %g; x2 = %g; x3 = %g\n",
68 ilp.primal(x1), ilp.primal(x2), ilp.primal(x3));
71 std::cout<<"Optimal solution not found!"<<std::endl;