SoPlex Doxygen Documentation
unitvector.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-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 unitvector.h
17  * @brief Sparse vector \f$e_i\f$.
18  */
19 
20 #ifndef _UNITVECTOR_H_
21 #define _UNITVECTOR_H_
22 
23 #include <assert.h>
24 #include "spxdefines.h"
25 #include "svector.h"
26 
27 namespace soplex
28 {
29 
30 
31 /**@brief Sparse vector \f$e_i\f$.
32  @ingroup Algebra
33 
34  A UnitVector is an SVector that can take only one nonzero value with
35  value 1 but arbitrary index.
36 
37  \todo Several SVector modification methods are still accessible for UnitVector.
38  They might be used to change the vector.
39 
40  \todo UnitVector memory management must be changed when SVector is redesigned.
41 */
42 class UnitVector : public SVector
43 {
44 private:
45 
46  //------------------------------------
47  /**@name Data */
48  //@{
49  Element themem[2]; ///< memory for 1st and 2nd sparse vector entry (themem[0]/themem[1])
50  //@}
51 
52 public:
53 
54  //------------------------------------
55  /**@name Access */
56  //@{
57  /// returns value = 1
58  /**\pre \c n must be 0.
59  */
60  /* ARGSUSED n */
61  Real value(int n) const
62  {
63  assert( n == 0 );
64  return 1;
65  }
66  //@}
67 
68  //------------------------------------
69  /**@name Constructors / destructors */
70  //@{
71  /// construct \c i 'th unit vector.
72  explicit
73  UnitVector(int i = 0)
74  : SVector(2, themem)
75  {
76  add(i, 1.0);
77 
78  assert(isConsistent());
79  }
80  /// copy constructor
81  UnitVector(const UnitVector& rhs)
82  : SVector(2, themem)
83  {
84  themem[0] = rhs.themem[0];
85  themem[1] = rhs.themem[1];
86 
87  assert(isConsistent());
88  }
89  /// assignment
91  {
92  if ( this != &rhs )
93  {
94  themem[0] = rhs.themem[0];
95  themem[1] = rhs.themem[1];
96 
97  assert(isConsistent());
98  }
99  return *this;
100  }
101  /// destructor
103  {}
104  //@}
105 
106  //------------------------------------
107  /**@name Miscellaneous */
108  //@{
109  /// consistency check
110  bool isConsistent() const;
111  //@}
112 };
113 
114 
115 } // namespace soplex
116 #endif // _UNITVECTOR_H_
117 
118 //-----------------------------------------------------------------------------
119 //Emacs Local Variables:
120 //Emacs mode:c++
121 //Emacs c-basic-offset:3
122 //Emacs tab-width:8
123 //Emacs indent-tabs-mode:nil
124 //Emacs End:
125 //-----------------------------------------------------------------------------