Scippy

SoPlex

Sequential object-oriented simPlex

xternal.cpp
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the class library */
4 /* SoPlex --- the Sequential object-oriented simPlex. */
5 /* */
6 /* Copyright (C) 1996-2019 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file xternal.cpp
17  * @brief SoPlex documentation pages
18  * @author Ambros Gleixner
19  * @author Thorsten Koch
20  * @author Matthias Miltenberger
21  * @author Sebastian Orlowski
22  * @author Marc Pfetsch
23  * @author Andreas Tuchscherer
24  */
25 
26 /**@mainpage Overview
27  *
28  * @section MAIN What is SoPlex?
29  *
30  * SoPlex is an optimization package for solving linear programming problems
31  * (LPs) that can be used standalone via a command line interface and as a
32  * callable library. Its main features are:
33  *
34  * - an advanced implementation of the primal and dual revised simplex
35  * algorithm,
36  *
37  * - an object-oriented software design written in C++,
38  *
39  * - presolving, scaling, exploitation of sparsity, hot-starting from any
40  * regular basis,
41  *
42  * - column- and row-oriented form of the simplex algorithm,
43  *
44  * - a compile-time option to use 80bit extended ("quad") precision for
45  * numerically difficult LPs, and
46  *
47  * - special support for the exact solution of LPs over the rational numbers.
48  *
49  * SoPlex has been used in numerous reasearch and industry projects and is the
50  * standard LP solver linked to the constraint integer programming solver <a
51  * href="http://scip.zib.de/">SCIP</a>.
52  *
53  *@section INST Download, License, and Installation
54  *
55  * SoPlex can be downloaded in source code and as precompiled binaries from the
56  * <a href="http://soplex.zib.de">SoPlex</a> web page. It is also distributed
57  * as part of the <a href="http://scip.zib.de/">SCIP Optimization Suite</a>.
58  *
59  * SoPlex is distributed under the terms of the \ref LICENSE "ZIB Academic Licence"
60  * and can be freely used for academic research. See the <a
61  * href="http://soplex.zib.de">SoPlex</a> web page or contact us for more
62  * information.
63  *
64  * For help with the installation please consult the \ref INSTALL "INSTALL" file.
65  *
66  * @section GETTINGSTARTED Getting started
67  *
68  * - \ref FAQ "Frequently Asked Questions"
69  *
70  * - \ref CMD "How to use the SoPlex command line"
71  *
72  * - \ref LIB "How to use SoPlex as a callable library"
73  *
74  * - \ref PARS "Parameters in SoPlex"
75  *
76  * - \ref PROG "Programming with SoPlex"
77  *
78  * - \ref EXACT "How to use SoPlex as an exact LP solver"
79  *
80  * - \ref CHANGELOG "CHANGELOG"
81  *
82  * A tutorial article for getting started with the SCIP Optimization Suite,
83  * which includes SoPlex, is available as <a
84  * href="http://scip.zib.de/doc/ZR-12-27.pdf">ZIB-Report 12-27</a>.
85  *
86  * @section AUTHORS Authors
87  *
88  * The initial implementation of SoPlex has been developed by Roland Wunderling
89  * as part of his Ph.D. thesis <a
90  * href="http://www.zib.de/PaperWeb/abstracts/TR-96-09">"Paralleler und
91  * Objektorientierter Simplex-Algorithmus"</a> from 1996. Since then many
92  * developers have maintained and improved the underlying algorithms. See the
93  * <a href="http://soplex.zib.de">SoPlex</a> web page for a comprehensive list
94  * of all contributors.
95  *
96  * @version 4.0.1
97  */
98 
99 
100 /**@namespace soplex
101  @brief Everything should be within this namespace.
102 
103  We have put the whole class library in the namespace soplex.
104  If anything here is defined outside, this is a mistake and
105  should be reported.
106 */
107 
108 
109 /**@defgroup Elementary Elementary Classes
110  @brief General purpose classes.
111 
112  Elementary classes are provided for general purpose use in
113  projects way beyond the scope of numerical software or linear
114  programming.
115 */
116 
117 /**@defgroup Algebra Linear Algebra Classes
118  @brief Basic data types for linear algebra computations.
119 
120  Linear algebra classes provide basic data types for (sparse)
121  linear algebra computations. However, their functionality is
122  restricted to simple operations such as addition and scaling.
123  For complex tasks, such as solving linear systems of equations,
124  algorithmic classes are provided instead.
125 */
126 
127 /**@defgroup Algo Algorithmic Classes
128  @brief Implementation of numerical algorithms.
129 
130  Algorithmic classes serve for implementing a variety of
131  algorithms for solving numerical (sub-)problems.
132 */
133 
134 /**@page DataObjects Data Objects
135 
136  \em Data \em objects refer to C++ objects that do not allocate any
137  resources, particularly that do not allocate any memory. This
138  makes them behave just like ordinary C structures, in that both,
139  the copy constructor and assignment operator are equivalent to a
140  memcopy of the memory taken by the object. Examples for data
141  objects are all builtin types such as \c int or \c double or
142  \e simple classes such as \c complex.
143 
144  We distinguish \em data \em objects from general C++ objects that
145  may include some allocation of resources. (Note that for general
146  C++ objects that do allocate resources, this must be respected by
147  providing appropriate copy constructor and assignment operators.)
148  An example for a general C++ class is class DataArray.
149 
150  The distinction between data and general C++ objects becomes
151  relevant when using such objects in container classes such as
152  DataArray or Array.
153 */
154 
155 
156 /**@page LICENSE License
157  *
158  * \verbinclude COPYING
159  */
160 
161 
162 /**@page CHANGELOG CHANGELOG
163  *
164  * \verbinclude CHANGELOG
165  */
166 
167 
168 /**@page FAQ Frequently Asked Questions
169  * \htmlinclude faq.inc
170  */
171 
172 
173 /**@page CMD How to use the SoPlex command line
174  *
175  * Running the command line binary of SoPlex without any arguments displays a
176  * list of options. You can write a parameter file with default parameters by
177  * using option \-\-saveset=FILENAME.set. After changing parameter values in this
178  * file you can use it by with \-\-loadset=FILENAME.set. The most frequently used
179  * parameters have abbreviations.
180 */
181 
182 
183 /**@page LIB How to use SoPlex as a callable library
184  *
185  *@section LIB1 Namespace "soplex"
186  *
187  * The entire SoPlex code is contained in the namespace \ref soplex. Because of
188  * this, either all classes and methods must be qualified by the prefix
189  * "soplex::" or a "using namespace soplex;" must be present.
190  *
191  *@section LIB2 Interface class
192  *
193  * The main interface is given by the class \ref soplex::SoPlex "SoPlex", which
194  * handles the construction and modification of an LP, the solving process,
195  * allows to access and change parameters, and retrieve solution information.
196  *
197  * A basic example on how to construct and solve an LP via the class
198  * \ref soplex::SoPlex "SoPlex" is given in the file \ref example.cpp.
199  *
200  *@section LIB3 Deprecated 1.x interface
201  *
202  * With version 2.0, the SoPlex class has been updated significantly compared to
203  * the 1.x version. Since version 4.0, the old version cannot be used anymore.
204 */
205 
206 
207 /**@page PARS Parameters in SoPlex
208  *
209  * Since SoPlex 2.0, the main interface class \ref soplex::SoPlex "SoPlex" provides an improved management of
210  * parameters. Currently, there are three types of parameters for boolean, integer, and real values. A list of default
211  * parameters is provided \ref PARSLIST "here".
212  *
213  *@section PARS1 Setting parameters at the command line
214  *
215  * When using the command line interface, parameters can be changed with the generic option
216  *
217  * <code>\-\-&lt;type&gt;:&lt;name&gt;=&lt;val&gt;</code>
218  *
219  * where &lt;type&gt; is one of <code>bool</code>, <code>int</code>, or <code>real</code> and name is the name of the
220  * parameter. E.g., in order to deactivate the simplifier, one can use the option <code>\-\-bool:simplifier=0</code>.
221  *
222  *@section PARS2 Setting parameters via the callable library
223  *
224  * When using the callable library via the class \ref soplex::SoPlex "SoPlex" (of version 2.0 and above), parameters can
225  * be changed by the methods \ref soplex::SoPlex::setBoolParam() "setBoolParam()", \ref soplex::SoPlex::setIntParam()
226  * "setIntParam()", and \ref soplex::SoPlex::setRealParam() "setRealParam()". See their documentation for details.
227  */
228 
229 
230 /**@page PARSLIST List of all SoPlex parameters
231  *
232  * This page lists all parameters of the current SoPlex version. This list can
233  * easily be generated by the SoPlex command line interface using:
234  *
235  * <code>soplex \-\-saveset=&lt;file name&gt;.set</code>
236  *
237  * or via the method \ref soplex::SoPlex::saveSettingsFile() "saveSettingsFile(&quot;&lt;file name&gt;.set&quot;, true)" of the class \ref
238  * soplex::SoPlex "SoPlex".
239  *
240  * \verbinclude doc/parameters.set
241  */
242 
243 
244 /**@page PROG Programming with SoPlex
245  *
246  * Besides the main interface class \ref soplex::SoPlex "SoPlex", the classes of
247  * the SoPlex library are categorized into three different types:
248  *
249  * - Elementary classes are provided for general purpose use in projects way
250  * beyond the scope of numerical software or linear programming.
251  *
252  * - Linear algebra classes provide basic data types for (sparse) linear algebra
253  * computations. However, their functionality is restricted to simple
254  * operations such as addition and scaling. For complex tasks, such as
255  * solving linear systems of equations, algorithmic classes are provided
256  * instead.
257  *
258  * - Algorithmic classes serve for implementing maybe a variety of algorithms
259  * for solving numerical (sub-)problems.
260  *
261  * The main class implementing the primal and dual simplex algorithm is the
262  * class \ref soplex::SPxSolver "SPxSolver". The following sections are
263  * dedicated to users who want to provide own components of the simplex
264  * algorithm such as pricers, ratio tests, start basis generators or LP
265  * simplifiers to use with SoPlex's standard floating-point simplex
266  * implementation.
267  *
268  *@section Representation Virtualizing the Representation
269  *
270  * The primal Simplex on the columnwise representation is structurally
271  * equivalent to the dual Simplex on the rowwise representation and vice versa
272  * (see below). Hence, it is desirable to treat both cases in a very similar
273  * manner. This is supported by the programmer's interface of SoPlex which
274  * provides access methods for all internal data in two ways: one is relative to
275  * the "physical" representation of the LP in rows and columns, while the other
276  * is relative to the chosen basis representation.
277  *
278  * If e.g. a \ref soplex::SPxPricer "SPxPricer" is written using the second type
279  * of methods only (which will generally be the case), the same code can be used
280  * for running SoPlex's simplex algorithm for both representations. We will now
281  * give two examples for this abstraction from the chosen representation.
282  *
283  * Methods \c vector() will return a column or a row vector, corresponding to
284  * the chosen basis representation. The other "vectors" will be referred to as
285  * \em covectors:
286  *
287  * <TABLE>
288  * <TR><TD>&nbsp; </TD><TD>ROW </TD><TD>COLUMN </TD></TR>
289  * <TR><TD>vector </TD><TD>rowVector</TD><TD>colVector</TD></TR>
290  * <TR><TD>coVector</TD><TD>colVector</TD><TD>rowVector</TD></TR>
291  * </TABLE>
292  *
293  * Whether the \ref soplex::SPxBasis::Desc::Status "SPxBasis::Desc::Status" of a
294  * variable indicates that the corresponding vector is in the basis matrix or
295  * not also depends on the chosen representation. Hence, methods \c isBasic()
296  * are provided to get the correct answer for both representations.
297  *
298  *@section Simplex Vectors and Bounds
299  *
300  * The Simplex algorithms keeps three vectors which are associated to each
301  * basis. Two of them are required for the pricing, while the third one is
302  * needed for detecting feasibility of the basis. For all three vectors, bounds
303  * are defined. The Simplex algorithm changes the basis until all three vectors
304  * satisfy their bounds, which means that the optimal solution has been found.
305  *
306  * With each update of the basis, also the three vectors need to be
307  * updated. This is best supported by the use of \c UpdateVectors.
308  *
309  *@subsection Variables
310  *
311  * The Simplex algorithm works with two types of variables, primals and duals.
312  * The primal variables are associated with each column of an LP, whereas the
313  * dual variables are associated with each row. However, for each row a slack
314  * variable must be added to the set of primals (to represent inequalities), and
315  * a reduced cost variable must be added for each column (to represent upper or
316  * lower bounds). Note, that mathematically, one dual variable for each bound
317  * (upper and lower) should be added. However, this variable would always yield
318  * the same value and can, hence, be implemented as one.
319  *
320  * To summarize, we have a primal variable for each LP column and row (i.e., its
321  * slack) as well as a dual variable for each LP row and column (i.e., its
322  * bounds). However, not all these values need to be stored and computed, since
323  * the structure of the Simplex algorithms allow to keep them implicitly.
324  *
325  * If the SPxBasis's Status of a row or column is one of \c P_ON_LOWER, \c
326  * P_ON_UPPER, \c P_FIXED or \c P_FREE, the value of the corresponding primal
327  * variable is the lower, upper or both bound(s) or 0, respectively. The
328  * corresponding dual variable needs to be computed. Equivalently, for a Status
329  * of \c D_FREE, \c D_ON_UPPER, \c D_ON_LOWER, \c D_ON_BOTH or \c D_UNDEFINED,
330  * the corresponding dual variable is 0, whereas the primal one needs to be
331  * computed.
332  *
333  * The following vectors are declared for holding the values to be computed: \c
334  * primRhs, \c primVec (with dimension \c nCols()) for the primal variables, and
335  * \c dualRhs, \c dualVec (with dimension \c nRows()) for the dual
336  * variables. The additional variable \c addvec (with dimension \c coDim())
337  * depends on the representation.
338  *
339  * @subsection Bounds
340  *
341  * Primal and dual variables are bounded (including \f$\pm\infty\f$ as bounds).
342  * If all primal variables are within their bounds, the Simplex basis is said to
343  * be primal feasible. Analogously, if all dual variables are within their
344  * bounds, its is called dual feasible. If a basis is both, primal and dual
345  * feasible, the optimal solution has been found.
346  *
347  * In the dual Simplex, the basis is maintained dual feasible, while primal
348  * feasibility is improved via basis updates. However, for numerical reasons
349  * dual feasibility must be relaxed from time to time. Equivalently, primal
350  * feasibility will be relaxed to retain numerical stability in the primal
351  * Simplex algorithm.
352  *
353  * Relaxation of (dual or primal) feasibility is achieved by relaxing the bounds
354  * of primal or dual variables. However, for each type of Simplex only the
355  * corresponding bounds need to be relaxed. Hence, we define only one vector of
356  * upper and lower bound for each row and column and initialize it with primal
357  * or dual bound, depending on the Simplex type (see \c theURbound, \c
358  * theLRbound, \c theUCbound, \c theLCbound).
359  */
360 
361 
362 /**@page EXACT How to use SoPlex as an exact LP solver
363  *
364  * Since version 1.7, SoPlex implements an \em iterative \em refinement procedure on the level of linear programs, which
365  * allows for computing extended-precision solutions beyond the limits of standard floating-point arithmetic. It may be
366  * particularly helpful for numerically troublesome LPs and applications that require solutions within tight feasibility
367  * tolerances. Since version 2.1 this has been extended to compute exact rational solutions.
368  *
369  * By default, SoPlex functions as a standard floating-point LP solver. In order to use SoPlex as an exact LP solver,
370  * you need to compile SoPlex with GMP support (default, see the \ref INSTALL "INSTALL" file) and change the following
371  * parameters from their default value:
372  *
373  * - <code>real:feastol = 0</code>
374  *
375  * - <code>real:opttol = 0</code>
376  *
377  * - <code>int:solvemode = 2</code>
378  *
379  * - <code>int:syncmode = 1</code>
380  *
381  * - <code>int:readmode = 1</code> (optional, activates exact parsing of input files)
382  *
383  * - <code>int:checkmode = 2</code> (optional, activates exact final check of feasibility and optimality at the command
384  * line)
385  *
386  * See \ref PARS "this page" how to change parameters and the \ref PARSLIST "list of all SoPlex parameters" for their
387  * detailed description. A settings file <code>exact.set</code> for exact solving is provided in the directory
388  * <code>settings</code> of the distribution. On the command line, this can be read with option
389  * <code>\-\-loadset=settings/exact.set</code>.
390  *
391  * If you have questions on particularly this feature you can contact <a href="http://www.zib.de/gleixner/">Ambros
392  * Gleixner</a> or post them on the SoPlex mailing list.
393  *
394  *
395  *@section EXACT4 References
396  *
397  * The mathematical background of the underlying methods is described in the papers
398  *
399  * - Ambros M. Gleixner, Daniel E. Steffy, Kati Wolter. <i>Improving the Accuracy of Linear Programming Solvers with
400  * Iterative Refinement</i>. Proc. of ISSAC '12, pages 187--194, 2012, available as <a
401  * href="http://nbn-resolving.de/urn:nbn:de:0297-zib-15451">ZIB-Report 12-19</a>.
402  *
403  * - Ambros M. Gleixner, Daniel E. Steffy, Kati Wolter. <i>Iterative Refinement for Linear Programming</i>. <a
404  * href="http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:0297-zib-55118">ZIB-Report 15-15</a>, Zuse Institute
405  * Berlin, 2015.
406  *
407  * <b>When using SoPlex as an exact LP solver, please cite the above papers.</b>
408  */