Toggle navigation
SCIP Optimization Suite
SCIP
SoPlex
ZIMPL
UG
GCG
Documentation
SoPlex 7.1.2
SoPlex 6.0.3
SoPlex 5.0.2
SoPlex 4.0.2
SoPlex 3.1.0
SoPlex 3.0.1
SoPlex 2.2.1
SoPlex
Sequential object-oriented simPlex
src
soplex
sol.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 Roland Wunderling */
7
/* 1996-2019 Konrad-Zuse-Zentrum */
8
/* fuer Informationstechnik Berlin */
9
/* */
10
/* SoPlex is distributed under the terms of the ZIB Academic Licence. */
11
/* */
12
/* You should have received a copy of the ZIB Academic License */
13
/* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
14
/* */
15
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
16
17
/**@file sol.h
18
* @brief Types of solution classes
19
*/
20
#ifndef _SOL_H_
21
#define _SOL_H_
22
23
#include "
soplex/spxdefines.h
"
24
#include "
soplex/solbase.h
"
25
26
namespace
soplex
27
{
28
typedef
SolBase<Real>
SolReal
;
29
typedef
SolBase<Rational>
SolRational
;
30
}
// namespace soplex
31
#endif // _SOL_H_
soplex::SolBase< Real >
spxdefines.h
Debugging, floating point type and parameter definitions.
soplex::SolRational
SolBase< Rational > SolRational
Definition:
sol.h:29
soplex
Everything should be within this namespace.
solbase.h
Class for storing a primal-dual solution with basis information.
soplex::SolReal
SolBase< Real > SolReal
Definition:
sol.h:28