SoPlex Doxygen Documentation
mpqreal.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 mpqreal.h
17  * @brief Wrapper for GMP types.
18  */
19 #ifndef _MPQREAL_H_
20 #define _MPQREAL_H_
21 
22 #include <math.h>
23 #include <iostream>
24 
25 #include "spxdefines.h"
26 
27 
28 
29 #ifdef SOPLEX_WITH_GMP
30 #include "gmp.h"
31 #include "gmpxx.h"
32 #endif
33 
34 namespace soplex
35 {
36 /**@brief Wrapper for GMP type mpq_class.
37  * @ingroup Algebra
38  *
39  * We wrap mpq_class so that we can replace it by SoPlex's normal Real type if GMP is not available.
40  */
41 #ifdef SOPLEX_WITH_GMP
42 
43 /// If compiled with GMP support, MpqReal is defined as mpq_class.
44 typedef mpq_class MpqReal;
45 
46 /// return whether MpqReal provides exact arithmetic
47 #define MpqRealIsExact() (true)
48 
49 /// print MpqReal with limited floating point precision
50 std::ostream& operator<<(std::ostream& os, const MpqReal& q);
51 
52 #else
53 
54 /// If compiled without GMP support, MpqReal is defined as SoPlex's normal Real.
55 typedef Real MpqReal;
56 
57 /// return whether MpqReal provides exact arithmetic
58 #define MpqRealIsExact() (false)
59 
60 /// return maximal absolute value
61 MpqReal abs(const MpqReal& q);
62 #endif
63 
64 /// cast MpqReal to Real
65 Real get_d(const MpqReal& q);
66 
67 } // namespace soplex
68 #endif // _MPQREAL_H_
69 
70 //-----------------------------------------------------------------------------
71 //Emacs Local Variables:
72 //Emacs mode:c++
73 //Emacs c-basic-offset:3
74 //Emacs tab-width:8
75 //Emacs indent-tabs-mode:nil
76 //Emacs End:
77 //-----------------------------------------------------------------------------