SoPlex Doxygen Documentation
lprow.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 <stdlib.h>
19 #include <assert.h>
20 #include <iostream>
21 
22 #include "spxdefines.h"
23 #include "lprow.h"
24 #include "exceptions.h"
25 
26 namespace soplex
27 {
29 {
30  if (rhs() >= infinity)
31  return GREATER_EQUAL;
32  if (lhs() <= -infinity)
33  return LESS_EQUAL;
34  if (lhs() == rhs())
35  return EQUAL;
36  return RANGE;
37 }
38 
40 {
41  switch (p_type)
42  {
43  case LESS_EQUAL:
44  left = -infinity;
45  break;
46  case EQUAL:
47  if (lhs() > -infinity)
48  right = lhs();
49  else
50  left = rhs();
51  break;
52  case GREATER_EQUAL:
53  right = infinity;
54  break;
55  case RANGE:
56  MSG_ERROR( spxout << "ELPROW01 RANGE not supported in LPRow::setType()"
57  << std::endl; )
58  throw SPxInternalCodeException("XLPROW01 This should never happen.");
59  default:
60  throw SPxInternalCodeException("XLPROW02 This should never happen.");
61  }
62 }
63 
65 {
66  assert(type() != RANGE);
67 
68  return (rhs() < infinity) ? rhs() : lhs();
69 }
70 
71 LPRow::LPRow(const SVector& p_rowVector, LPRow::Type p_type, Real p_value)
72  : vec(p_rowVector)
73 {
74  switch (p_type)
75  {
76  case LESS_EQUAL:
77  left = -infinity;
78  right = p_value;
79  break;
80  case EQUAL:
81  left = p_value;
82  right = p_value;
83  break;
84  case GREATER_EQUAL:
85  left = p_value;
86  right = infinity;
87  break;
88  default:
89  throw SPxInternalCodeException("XLPROW03 This should never happen.");
90  }
91 
92  assert(isConsistent());
93 }
94 } // namespace soplex
95 
96 //-----------------------------------------------------------------------------
97 //Emacs Local Variables:
98 //Emacs mode:c++
99 //Emacs c-basic-offset:3
100 //Emacs tab-width:8
101 //Emacs indent-tabs-mode:nil
102 //Emacs End:
103 //-----------------------------------------------------------------------------