SoPlex Doxygen Documentation
unitvector.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 #include <assert.h>
17 
18 #include "unitvector.h"
19 
20 namespace soplex
21 {
22 
24 {
25 #ifdef ENABLE_CONSISTENCY_CHECKS
26  if (mem() != themem)
27  return MSGinconsistent("UnitVector");
28  if (mem() + 1 != &themem[1])
29  return MSGinconsistent("UnitVector");
30  if (size() != 1)
31  return MSGinconsistent("UnitVector");
32  if (max() != 1)
33  return MSGinconsistent("UnitVector");
34 
35  return SVector::isConsistent();
36 #else
37  return true;
38 #endif
39 }
40 } // namespace soplex
41 
42 //-----------------------------------------------------------------------------
43 //Emacs Local Variables:
44 //Emacs mode:c++
45 //Emacs c-basic-offset:3
46 //Emacs tab-width:8
47 //Emacs indent-tabs-mode:nil
48 //Emacs End:
49 //-----------------------------------------------------------------------------