SoPlex Doxygen Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
src
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
27
bool
SPxHybridPR::isConsistent
()
const
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
44
void
SPxHybridPR::load
(
SPxSolver
* p_solver)
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
53
void
SPxHybridPR::clear
()
54
{
55
steep
.
clear
();
56
devex
.
clear
();
57
parmult
.
clear
();
58
thesolver
= 0;
59
}
60
61
void
SPxHybridPR::setEpsilon
(
Real
eps)
62
{
63
steep
.
setEpsilon
(eps);
64
devex
.
setEpsilon
(eps);
65
parmult
.
setEpsilon
(eps);
66
}
67
68
void
SPxHybridPR::setType
(
SPxSolver::Type
tp)
69
{
70
if
(tp ==
SPxSolver::LEAVE
)
71
{
72
thepricer
= &
steep
;
73
thesolver
->
setPricing
(
SPxSolver::FULL
);
74
}
75
else
76
{
77
if
(
thesolver
->
dim
() >
hybridFactor
*
thesolver
->
coDim
())
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
;
85
thesolver
->
setPricing
(
SPxSolver::FULL
);
86
}
87
else
88
{
89
thepricer
= &
parmult
;
90
thesolver
->
setPricing
(
SPxSolver::PARTIAL
);
91
}
92
}
93
94
MSG_INFO1
(
spxout
<<
"IPRHYB01 switching to "
95
<<
thepricer
->
getName
() << std::endl; )
96
97
thepricer
->
setType
(tp);
98
}
99
100
void
SPxHybridPR::setRep
(
SPxSolver::Representation
rep)
101
{
102
steep
.
setRep
(rep);
103
devex
.
setRep
(rep);
104
parmult
.
setRep
(rep);
105
}
106
107
int
SPxHybridPR::selectLeave
()
108
{
109
return
thepricer
->
selectLeave
();
110
}
111
112
void
SPxHybridPR::left4
(
int
n,
SPxId
id
)
113
{
114
thepricer
->
left4
(n,
id
);
115
}
116
117
SPxId
SPxHybridPR::selectEnter
()
118
{
119
return
thepricer
->
selectEnter
();
120
}
121
122
void
SPxHybridPR::entered4
(
SPxId
id
,
int
n)
123
{
124
thepricer
->
entered4
(
id
, n);
125
}
126
127
void
SPxHybridPR::addedVecs
(
int
n)
128
{
129
steep
.
addedVecs
(n);
130
devex
.
addedVecs
(n);
131
parmult
.
addedVecs
(n);
132
}
133
134
void
SPxHybridPR::addedCoVecs
(
int
n)
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
//-----------------------------------------------------------------------------
© 2003-2013 by Zuse Institute Berlin (ZIB),
Imprint
Generated on Wed Jan 9 2013 for SoPlex by
doxygen