SoPlex Doxygen Documentation
soplex.h
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-2012 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 soplex.h
17  * @brief preconfigured \ref soplex::SoPlex "SoPlex" LP-solver.
18  */
19 #ifndef _SOPLEX_H_
20 #define _SOPLEX_H_
21 
22 #include <assert.h>
23 #include <string>
24 
25 #include "spxsolver.h"
26 #include "spxscaler.h"
27 #include "spxsimplifier.h"
28 #include "spxsteeppr.h"
29 #include "spxfastrt.h"
30 #include "spxfileio.h"
31 #include "spxweightst.h"
32 #include "slufactor.h"
33 
34 namespace soplex
35 {
36 
37 /**@class SoPlex
38  @brief Preconfigured SoPlex LP-solver.
39  @ingroup Algo
40 */
41 class SoPlex : public SPxLP
42 {
43 protected:
44 
45  //-------------------------
46  //**@name Protected data */
47  //@{
48  // SPxWeightST st; ///< weight starter
49  SLUFactor m_slu; ///< LU Factorisation
50  SPxSolver m_solver; ///< solver
51  SPxScaler* m_preScaler; ///< pre-scaler
52  SPxScaler* m_postScaler; ///< post-scaler
53  SPxSimplifier* m_simplifier; ///< simplifier
54  bool m_vanished; ///< did the presolver solve the problem ?
55  bool m_freePreScaler; ///< true iff m_preScaler should be freed inside of this object
56  bool m_freePostScaler; ///< true iff m_postScaler should be freed inside of this object
57  bool m_freeSimplifier; ///< true iff m_simplifier should be freed inside of this object
60  //@}
61 
62 public:
63 
64  //---------------------------------------
65  //**@name Construction / destruction */
66  //@{
67  /// default construtor.
68  explicit SoPlex(
71  virtual ~SoPlex();
72  /// assignment operator.
73  SoPlex& operator=(const SoPlex& rhs);
74  /// copy constructor.
75  SoPlex(const SoPlex&);
76  //@}
77 
78  //---------------------------------------
79  //**@name Access / modification */
80  //@{
81  /// set update type for factorization.
83  {
84  m_slu.setUtype(tp);
85  }
86  /// return current Pricing.
87  inline SPxSolver::Pricing pricing() const
88  {
89  return m_solver.pricing();
90  }
91  /// set FULL or PARTIAL pricing.
92  virtual void setPricing(SPxSolver::Pricing pr)
93  {
94  m_solver.setPricing(pr);
95  }
96  /// return current Type.
97  inline SPxSolver::Type type() const
98  {
99  return m_solver.type();
100  }
101  /// return current basis representation.
103  {
104  return m_solver.rep();
105  }
106  /// set LEAVE or ENTER algorithm.
107  virtual void setType(SPxSolver::Type tp)
108  {
109  m_solver.setType(tp);
110  }
111  /// set ROW or COLUMN representation.
112  virtual void setRep (SPxSolver::Representation p_rep)
113  {
114  m_solver.setRep(p_rep);
115  }
116  /// setup prescaler to use. If \p destroy is true, \p scaler will be freed in destructor.
117  virtual void setPreScaler(SPxScaler* scaler, const bool destroy = false);
118  /// setup postscaler to use. If \p destroy is true, \p scaler will be freed in destructor.
119  virtual void setPostScaler(SPxScaler* scaler, const bool destroy = false);
120  /// setup simplifier to use. If \p destroy is true, \p simpli will be freed in destructor.
121  virtual void setSimplifier(SPxSimplifier* simpli, const bool destroy = false);
122  /// has a simplifier been set?
123  inline bool has_simplifier() const
124  {
125  return m_simplifier != 0;
126  }
127  /// has a prescaler been set?
128  inline bool has_prescaler() const
129  {
130  return m_preScaler != 0;
131  }
132  /// has a postscaler been set?
133  inline bool has_postscaler() const
134  {
135  return m_postScaler != 0;
136  }
137  /// setup pricer to use.
138  virtual void setPricer(SPxPricer* pricer, const bool destroy = false)
139  {
140  m_solver.setPricer(pricer, destroy);
141  }
142  /// setup ratio-tester to use.
143  virtual void setTester(SPxRatioTester* tester, const bool destroy = false)
144  {
145  m_solver.setTester(tester, destroy);
146  }
147  /// setup starting basis generator to use.
148  virtual void setStarter(SPxStarter* starter, const bool destroy = false)
149  {
150  m_solver.setStarter(starter, destroy);
151  }
152  /// @throw SPxStatusException if simplifier loaded, this is not yet implemented
153  /// set starting basis
155  {
156  if (has_simplifier())
157  {
158  MSG_ERROR( spxout << "ESOLVR04 setting starting basis with presolving not yet implemented" << std::endl; )
159  throw SPxStatusException("XSOLVR04 setting starting basis with presolving not yet implemented");
160  }
161 
162  m_colsbasisstatus.reSize(nCols());
163  for (int i = 0; i < nCols(); i++)
164  m_colsbasisstatus[i] = cols[i];
165 
166  m_rowsbasisstatus.reSize(nRows());
167  for (int i = 0; i < nRows(); i++)
168  m_rowsbasisstatus[i] = rows[i];
169  }
170  /// clear starting basis
171  virtual void clearBasis()
172  {
173  m_colsbasisstatus.clear();
174  m_rowsbasisstatus.clear();
175  m_solver.reLoad();
176  }
177  /// set time limit.
178  virtual void setTerminationTime(Real time = infinity)
179  {
181  }
182  /// return time limit.
183  inline Real terminationTime() const
184  {
185  return m_solver.terminationTime();
186  }
187  /// set iteration limit.
188  virtual void setTerminationIter(int iter = -1)
189  {
191  }
192  /// return iteration limit.
193  inline int terminationIter() const
194  {
195  return m_solver.terminationIter();
196  }
197  /// set objective limit.
198  virtual void setTerminationValue(Real val = infinity)
199  {
201  }
202  /// return objective limit.
203  inline Real terminationValue() const
204  {
205  return m_solver.terminationValue();
206  }
207  /// allowed primal feasibility tolerance.
208  virtual Real feastol() const
209  {
210  return m_solver.feastol();
211  }
212  /// allowed optimality, i.e., dual feasibility tolerance.
213  virtual Real opttol() const
214  {
215  return m_solver.opttol();
216  }
217  /// guaranteed primal and dual bound violation for optimal solution, returning the maximum of feastol() and opttol(), i.e., the less tight tolerance.
218  virtual Real delta() const
219  {
220  return m_solver.delta();
221  }
222  /// iterative refinement threshold: if feastol() or opttol() are below this value, iterative refinement is applied.
224  {
225  return m_solver.irthreshold();
226  }
227  /// set parameter \p feastol.
228  virtual void setFeastol(Real d)
229  {
230  m_solver.setFeastol(d);
231  }
232  /// set parameter \p opttol.
233  virtual void setOpttol(Real d)
234  {
235  m_solver.setOpttol(d);
236  }
237  /// set parameter \p delta, i.e., set \p feastol and \p opttol to same value.
238  virtual void setDelta(Real d)
239  {
240  m_solver.setDelta(d);
241  }
242  /// set parameter \p irthreshold.
243  virtual void setIrthreshold(Real d)
244  {
246  }
247  //@}
248 
249  //---------------------------------------
250  //**@name Solving and solution query */
251  //@{
252  /// @throw SPxStatusException if no problem loaded
253  virtual SPxSolver::Status solve();
254  ///
255  virtual Real objValue() const;
256  ///
257  virtual SPxSolver::Status getPrimal(Vector& vector) const;
258  ///
259  virtual SPxSolver::Status getSlacks(Vector& vector) const;
260  ///
261  virtual SPxSolver::Status getDual(Vector& vector) const;
262  ///
263  virtual SPxSolver::Status getRedCost(Vector& vector) const;
264 
265  /// gets basis status for a single row.
267 
268  /// gets basis status for a single column.
270 
271  /// get current basis, and return solver status.
273 
274  const char* getColName(
275  int idx,
276  const NameSet* cnames,
277  char* buf)
278  {
279  assert(buf != 0);
280  assert(idx >= 0);
281  assert(idx < nCols());
282 
283  if (cnames != 0)
284  {
285  DataKey key = cId(idx);
286 
287  if (cnames->has(key))
288  return (*cnames)[key];
289  }
290  std::sprintf(buf, "x%d", idx);
291 
292  return buf;
293  }
294 
295  const char* getRowName(
296  int idx,
297  const NameSet* rnames,
298  char* buf)
299  {
300  assert(buf != 0);
301  assert(idx >= 0);
302  assert(idx < nRows());
303 
304  if (rnames != 0)
305  {
306  DataKey key = rId(idx);
307 
308  if (rnames->has(key))
309  return (*rnames)[key];
310  }
311  std::sprintf(buf, "C%d", idx);
312 
313  return buf;
314  }
315 
316  /// @throw SPxStatusException if simplifier loaded, this is not yet
317  /// implemented
318  virtual SPxSolver::Status getPrimalray(Vector& vector) const;
319 
320  /// @throw SPxStatusException if simplifier loaded, this is not yet
321  /// implemented
322  virtual SPxSolver::Status getDualfarkas(Vector& vector) const;
323 
324  /// get violation of constraints.
325  virtual void qualConstraintViolation(Real& maxviol, Real& sumviol) const;
326  /// get violations of bounds.
327  virtual void qualBoundViolation(Real& maxviol, Real& sumviol) const;
328 #if 0
329  /// get the residuum |Ax-b|.
330  virtual void qualSlackViolation(Real& maxviol, Real& sumviol) const;
331  /// get violation of optimality criterion.
332  virtual void qualRedCostViolation(Real& maxviol, Real& sumviol) const;
333 #endif
334  /// time spent in factorizations
335  virtual Real getFactorTime() const
336  {
337  return m_vanished ? REAL(0.0) : m_slu.getFactorTime();
338  }
339  /// number of factorizations performed
340  virtual int getFactorCount() const
341  {
342  return m_vanished ? 0 : m_slu.getFactorCount();
343  }
344  /// time spent in solves
345  virtual Real getSolveTime() const
346  {
347  return m_vanished ? REAL(0.0) : m_slu.getSolveTime();
348  }
349  /// number of solves performed
350  virtual int getSolveCount() const
351  {
352  return m_vanished ? 0 : m_slu.getSolveCount();
353  }
354  ///
355  virtual int iteration() const
356  {
357  return m_vanished ? 0 : m_solver.basis().iteration();
358  }
359  ///
360  virtual bool terminate()
361  {
362  return m_solver.terminate();
363  }
364  /// returns the current status
365  virtual SPxSolver::Status status() const
366  {
367  if (m_vanished)
368  return SPxSolver::OPTIMAL;
369 
370  return m_solver.status();
371  }
372  //@}
373 
374  //---------------------------------------
375  //**@name I/O */
376  //@{
377 
378  /** Load basis from \p filename in MPS format. If \p rowNames and \p
379  * colNames are \c NULL, default names are used for the constraints and
380  * variables.
381  */
382  virtual bool readBasisFile(const char* filename,
383  const NameSet* rowNames, const NameSet* colNames);
384 
385  /** Write basis to \p filename in MPS format. If \p rowNames and \p
386  * colNames are \c NULL, default names are used for the constraints and
387  * variables.
388  */
389  virtual bool writeBasisFile(const char* filename,
390  const NameSet* rowNames, const NameSet* colNames);
391 
392  /** Write LP, basis and parameter settings of the current SPxSolver object
393  * (i.e. after simplifying and scaling).
394  * LP is written in MPS format to "\p filename".mps, basis is written in
395  * "\p filename".bas, and parameters are written to "\p filename".set.
396  * If \p rowNames and \p colNames are \c NULL, default names are used for
397  * the constraints and variables.
398  */
399  virtual bool writeState(const char* filename,
400  const NameSet* rowNames = NULL, const NameSet* colNames = NULL) const;
401 
402  /// returns statistical information in form of a string.
403  std::string statistics() const
404  {
405  return m_solver.statistics();
406  }
407  //@}
408 
409 private:
410 
411  //------------------------------------
412  //**@name Private helpers */
413  //@{
414  /// undoes preprocessing such that the unsimplified solution values and basis is available
415  void unsimplify() const;
416  //@}
417 };
418 } // namespace soplex
419 #endif // _SOPLEX_H_
420 
421 //-----------------------------------------------------------------------------
422 //Emacs Local Variables:
423 //Emacs mode:c++
424 //Emacs c-basic-offset:3
425 //Emacs tab-width:8
426 //Emacs indent-tabs-mode:nil
427 //Emacs End:
428 //-----------------------------------------------------------------------------