SoPlex Doxygen Documentation
spxhybridpr.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 //#define DEBUGGING 1
17 
18 #include <iostream>
19 
20 #include "spxdefines.h"
21 #include "spxhybridpr.h"
22 #include "spxout.h"
23 
24 namespace soplex
25 {
26 
28 {
29 #ifdef ENABLE_CONSISTENCY_CHECKS
30  if (thesolver != 0 &&
31  (thesolver != steep.solver() ||
32  thesolver != devex.solver() ||
33  thesolver != parmult.solver()))
34  return MSGinconsistent("SPxHybridPR");
35 
36  return steep.isConsistent()
37  && devex.isConsistent()
38  && parmult.isConsistent();
39 #else
40  return true;
41 #endif
42 }
43 
45 {
46  steep.load(p_solver);
47  devex.load(p_solver);
48  parmult.load(p_solver);
49  thesolver = p_solver;
50  setType(p_solver->type());
51 }
52 
54 {
55  steep.clear();
56  devex.clear();
57  parmult.clear();
58  thesolver = 0;
59 }
60 
62 {
63  steep.setEpsilon(eps);
64  devex.setEpsilon(eps);
65  parmult.setEpsilon(eps);
66 }
67 
69 {
70  if (tp == SPxSolver::LEAVE)
71  {
72  thepricer = &steep;
74  }
75  else
76  {
78  {
79  /**@todo I changed from devex to steepest edge pricing here
80  * because of numerical difficulties, this should be
81  * investigated.
82  */
83  // thepricer = &devex;
84  thepricer = &steep;
86  }
87  else
88  {
89  thepricer = &parmult;
91  }
92  }
93 
94  MSG_INFO1( spxout << "IPRHYB01 switching to "
95  << thepricer->getName() << std::endl; )
96 
97  thepricer->setType(tp);
98 }
99 
101 {
102  steep.setRep(rep);
103  devex.setRep(rep);
104  parmult.setRep(rep);
105 }
106 
108 {
109  return thepricer->selectLeave();
110 }
111 
112 void SPxHybridPR::left4(int n, SPxId id)
113 {
114  thepricer->left4(n, id);
115 }
116 
118 {
119  return thepricer->selectEnter();
120 }
121 
123 {
124  thepricer->entered4(id, n);
125 }
126 
128 {
129  steep.addedVecs(n);
130  devex.addedVecs(n);
131  parmult.addedVecs(n);
132 }
133 
135 {
136  steep.addedCoVecs(n);
137  devex.addedCoVecs(n);
138  parmult.addedCoVecs(n);
139 }
140 
141 } // namespace soplex
142 
143 //-----------------------------------------------------------------------------
144 //Emacs Local Variables:
145 //Emacs mode:c++
146 //Emacs c-basic-offset:3
147 //Emacs tab-width:8
148 //Emacs indent-tabs-mode:nil
149 //Emacs End:
150 //-----------------------------------------------------------------------------