SoPlex Doxygen Documentation
spxgeometsc.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-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 spxgeometsc.cpp
17  * @brief Geometric mean row/column scaling.
18  */
19 #include <assert.h>
20 
21 #include "spxgeometsc.h"
22 #include "spxout.h"
23 
24 namespace soplex
25 {
26 /**@param maxIters arbitrary small number, we choose 8
27  @param minImpr Bixby said Fourer said in MP 23, 274 ff. that 0.9 is a good value.
28  @param goodEnough if the max/min ratio is allready less then 1000/1 we do not scale.
29 */
30 SPxGeometSC::SPxGeometSC(int maxIters, Real minImpr, Real goodEnough)
31  : SPxScaler("Geometric")
32  , m_maxIterations(maxIters)
33  , m_minImprovement(minImpr)
34  , m_goodEnoughRatio(goodEnough)
35 {}
36 
38  : SPxScaler(old)
39  , m_maxIterations(old.m_maxIterations)
40  , m_minImprovement(old.m_minImprovement)
41  , m_goodEnoughRatio(old.m_goodEnoughRatio)
42 {}
43 
45 {
46  if (this != &rhs)
47  {
49  }
50 
51  return *this;
52 }
53 
55 {
56  METHOD( "SPxGeometSC::computeScale()" );
57 
58  return sqrt(mini * maxi);
59 }
60 
62 {
63  METHOD( "SPxGeometSC::scale()" );
64 
65  MSG_INFO1( spxout << "IGEOSC01 Geometric scaling LP" << std::endl; )
66 
67  Real pstart = 0.0;
68  Real p0 = 0.0;
69  Real p1 = 0.0;
70 
71  setup(lp);
72 
73  /* We want to do that direction first, with the lower ratio.
74  * See SPxEquiliSC::scale() for a reasoning.
75  */
76  Real colratio = maxColRatio(lp);
77  Real rowratio = maxRowRatio(lp);
78 
79  bool colFirst = colratio < rowratio;
80 
81  MSG_INFO2( spxout << "IGEOSC02 LP scaling statistics:"
82  << " min= " << lp.minAbsNzo()
83  << " max= " << lp.maxAbsNzo()
84  << " col-ratio= " << colratio
85  << " row-ratio= " << rowratio
86  << std::endl; )
87 
88  // We make at most m_maxIterations.
89  for(int count = 0; count < m_maxIterations; count++)
90  {
91  if (colFirst)
92  {
95  }
96  else
97  {
100  }
101  MSG_INFO3( spxout << "IGEOSC03 Geometric scaling round " << count
102  << " col-ratio= " << (colFirst ? p0 : p1)
103  << " row-ratio= " << (colFirst ? p1 : p0)
104  << std::endl; )
105 
106  // record start value, this is done with m_col/rowscale = 1.0, so it is the
107  // value frome the "original" (as passed to the scaler) LP.
108  if (count == 0)
109  {
110  pstart = p0;
111  // are we allready good enough ?
112  if (pstart < m_goodEnoughRatio)
113  break;
114  }
115  else // do not test at the first iteration, then abort if no improvement.
116  if (p1 > m_minImprovement * p0)
117  break;
118  }
119 
120  // we scale only if either:
121  // - we had at the beginng a ratio worse then 1000/1
122  // - we have at least a 15% improvement.
123  if (pstart < m_goodEnoughRatio || p1 > pstart * m_minImprovement)
124  {
125  // reset m_colscale/m_rowscale to 1.0
126  setup(lp);
127 
128  MSG_INFO2( spxout << "IGEOSC04 No scaling done." << std::endl; )
129  }
130  else
131  {
132  applyScaling(lp);
133 
134  MSG_INFO3( spxout << "IGEOSC05 Row scaling min= " << minAbsRowscale()
135  << " max= " << maxAbsRowscale()
136  << std::endl
137  << "IGEOSC06 Col scaling min= " << minAbsColscale()
138  << " max= " << maxAbsColscale()
139  << std::endl; )
140 
141  MSG_INFO2( spxout << "IGEOSC07 LP scaling statistics:"
142  << " min= " << lp.minAbsNzo()
143  << " max= " << lp.maxAbsNzo()
144  << " col-ratio= " << maxColRatio(lp)
145  << " row-ratio= " << maxRowRatio(lp)
146  << std::endl; )
147  }
148 }
149 
150 } // namespace soplex
151 
152 //-----------------------------------------------------------------------------
153 //Emacs Local Variables:
154 //Emacs mode:c++
155 //Emacs c-basic-offset:3
156 //Emacs tab-width:8
157 //Emacs indent-tabs-mode:nil
158 //Emacs End:
159 //-----------------------------------------------------------------------------
160 
161 
162