Scippy

SoPlex

Sequential object-oriented simPlex

lpcol.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-2016 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 lpcol.h
17  * @brief LP column.
18  */
19 #ifndef _LPCOL_H_
20 #define _LPCOL_H_
21 
22 #include <assert.h>
23 
24 #include "spxdefines.h"
25 #include "lpcolbase.h"
26 
27 namespace soplex
28 {
32 } // namespace soplex
33 #endif // _LPCOL_H_
LPColBase< Real > LPColReal
Definition: lpcol.h:30
LPColBase< Rational > LPColRational
Definition: lpcol.h:31
Debugging, floating point type and parameter definitions.
Everything should be within this namespace.
LPColBase< Real > LPCol
Definition: lpcol.h:29
LP column.
LP column.Class LPColBase provides a datatype for storing the column of an LP a the form similar to ...
Definition: lpcolbase.h:45