SoPlex Doxygen Documentation
spxscaler.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 spxscaler.h
17  * @brief LP scaling base class.
18  */
19 #ifndef _SPXSCALER_H_
20 #define _SPXSCALER_H_
21 
22 #include <assert.h>
23 
24 #include "spxdefines.h"
25 #include "dataarray.h"
26 #include "spxlp.h"
27 
28 namespace soplex
29 {
30 /**@brief LP scaler abstract base class.
31  @ingroup Algo
32 
33  Instances of classes derived from SPxScaler may be loaded to SoPlex in
34  order to scale LPs before solving them. SoPlex will load() itself to
35  the SPxScaler and then call #scale(). Generally any SPxLP can be
36  loaded to a SPxScaler for #scale()%ing it. The scaling can
37  be undone by calling unscale().
38 */
39 class SPxScaler
40 {
41 protected:
42 
43  //-------------------------------------
44  /**@name Data */
45  //@{
46  const char* m_name; ///< Name of the scaler
47  DataArray < Real > m_colscale; ///< column scaling factors
48  DataArray < Real > m_rowscale; ///< row scaling factors
49  bool m_colFirst; ///< do column scaling first
50  bool m_doBoth; ///< do columns and rows
51  //@}
52 
53  //-------------------------------------
54  /**@name Protected helpers */
55  //@{
56  /// setup scale array for the LP.
57  virtual void setup(SPxLP& lp);
58  /// computes scaling value for a minimum and maximum pair.
59  virtual Real computeScale(Real mini, Real maxi) const;
60  /// iterates through vecset and calls computeScale() for each vector.
61  /**@return maximum ratio between absolute biggest and smallest element for any vector.
62  */
63  virtual Real computeScalingVecs( const SVSet* vecset,
64  const DataArray<Real>& coScaleval,
65  DataArray<Real>& scaleval );
66  /// applies m_colscale and m_rowscale to the \p lp.
67  virtual void applyScaling(SPxLP& lp);
68  //@}
69 
70 public:
71 
72  friend std::ostream& operator<<(std::ostream& s, const SPxScaler& sc);
73 
74  //-------------------------------------
75  /**@name Construction / destruction */
76  //@{
77  /// constructor
78  explicit SPxScaler(const char* name, bool colFirst = false, bool doBoth = true);
79  /// copy constructor
80  SPxScaler(const SPxScaler& );
81  /// assignment operator
82  SPxScaler& operator=(const SPxScaler& );
83  /// destructor.
84  virtual ~SPxScaler();
85  /// clone function for polymorphism
86  virtual SPxScaler* clone() const = 0;
87  //@}
88 
89  //-------------------------------------
90  /**@name Access / modification */
91  //@{
92  /// get name of scaler.
93  virtual const char* getName() const;
94  /// set scaling order.
95  virtual void setOrder(bool colFirst);
96  /// set wether column and row scaling should be performed.
97  virtual void setBoth(bool both);
98  //@}
99 
100  //-------------------------------------
101  /**@name Scaling */
102  //@{
103  /// scale SPxLP.
104  virtual void scale(SPxLP& lp) = 0;
105  /// unscale dense primal solution vector given in \p x.
106  virtual void unscalePrimal(Vector& x) const;
107  /// unscale dense slack vector given in \p s.
108  virtual void unscaleSlacks(Vector& s) const;
109  /// unscale dense dual solution vector given in \p pi.
110  virtual void unscaleDual(Vector& pi) const;
111  /// unscale dense reduced cost vector given in \p r.
112  virtual void unscaleRedCost(Vector& r) const;
113 
114  /// absolute smallest column scaling factor
115  virtual Real minAbsColscale() const;
116  /// absolute biggest column scaling factor
117  virtual Real maxAbsColscale() const;
118  /// absolute smallest row scaling factor
119  virtual Real minAbsRowscale() const;
120  /// absolute biggest row scaling factor
121  virtual Real maxAbsRowscale() const;
122  /// maximum ratio between absolute biggest and smallest element in any column.
123  virtual Real maxColRatio(const SPxLP& lp) const;
124  /// maximum ratio between absolute biggest and smallest element in any row.
125  virtual Real maxRowRatio(const SPxLP& lp) const;
126  //@}
127 
128  //-------------------------------------
129  /**@name Debugging */
130  //@{
131  /// consistency check
132  virtual bool isConsistent() const;
133  //@}
134 };
135 } // namespace soplex
136 #endif // _SPXSCALER_H_
137 
138 //-----------------------------------------------------------------------------
139 //Emacs Local Variables:
140 //Emacs mode:c++
141 //Emacs c-basic-offset:3
142 //Emacs tab-width:8
143 //Emacs indent-tabs-mode:nil
144 //Emacs End:
145 //-----------------------------------------------------------------------------
146