Scippy

SoPlex

Sequential object-oriented simPlex

spxgeometsc.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-2017 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 spxgeometsc.h
17  * @brief LP geometric mean scaling.
18  */
19 #ifndef _SPXGEOMETSC_H_
20 #define _SPXGEOMETSC_H_
21 
22 #include <assert.h>
23 
24 #include "spxdefines.h"
25 #include "spxscaler.h"
26 
27 namespace soplex
28 {
29 /**@brief Geometric mean row/column scaling.
30  @ingroup Algo
31 
32  This SPxScaler implementation performs geometric mean scaling of the
33  LPs rows and columns.
34 */
35 class SPxGeometSC : public SPxScaler
36 {
37 protected:
38 
39  //-------------------------------------
40  /**@name Data */
41  //@{
42  const int m_maxIterations; ///< maximum number of scaling iterations.
43  const Real m_minImprovement; ///< improvement necessary to carry on. (Bixby said Fourer said in MP 23, 274 ff. that 0.9 is a good value)
44  const Real m_goodEnoughRatio; ///< no scaling needed if ratio is less than this.
45  //@}
46 
47 public:
48 
49  //-------------------------------------
50  /**@name Construction / destruction */
51  //@{
52  /// default constructor (this scaler makes no use of inherited members m_colFirst and m_doBoth)
53  explicit SPxGeometSC(int maxIters = 8, Real minImpr = 0.85, Real goodEnough = 1e3);
54  /// copy constructor
55  SPxGeometSC(const SPxGeometSC& old);
56  /// assignment operator
58  /// destructor
59  virtual ~SPxGeometSC()
60  {}
61  /// clone function for polymorphism
62  inline virtual SPxScaler* clone() const
63  {
64  return new SPxGeometSC(*this);
65  }
66  //@}
67 
68  //-------------------------------------
69  /**@name Scaling */
70  //@{
71  /// Scale the loaded SPxLP.
72  virtual void scale(SPxLPBase<Real>& lp, bool persistent = true);
73  //@}
74 
75 };
76 } // namespace soplex
77 #endif // _SPXGEOMETSC_H_
const Real m_goodEnoughRatio
no scaling needed if ratio is less than this.
Definition: spxgeometsc.h:44
const int m_maxIterations
maximum number of scaling iterations.
Definition: spxgeometsc.h:42
Geometric mean row/column scaling.This SPxScaler implementation performs geometric mean scaling of th...
Definition: spxgeometsc.h:35
SPxGeometSC(int maxIters=8, Real minImpr=0.85, Real goodEnough=1e3)
default constructor (this scaler makes no use of inherited members m_colFirst and m_doBoth) ...
Definition: spxgeometsc.cpp:75
virtual void scale(SPxLPBase< Real > &lp, bool persistent=true)
Scale the loaded SPxLP.
Definition: spxgeometsc.cpp:99
double Real
Definition: spxdefines.h:215
SPxGeometSC & operator=(const SPxGeometSC &)
assignment operator
Definition: spxgeometsc.cpp:89
Debugging, floating point type and parameter definitions.
Everything should be within this namespace.
LP scaling base class.
virtual SPxScaler * clone() const
clone function for polymorphism
Definition: spxgeometsc.h:62
LP scaler abstract base class.Instances of classes derived from SPxScaler may be loaded to SoPlex in ...
Definition: spxscaler.h:75
const Real m_minImprovement
improvement necessary to carry on. (Bixby said Fourer said in MP 23, 274 ff. that 0...
Definition: spxgeometsc.h:43
virtual ~SPxGeometSC()
destructor
Definition: spxgeometsc.h:59