SoPlex Doxygen Documentation
mpqreal.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 /**@file mpqreal.cpp
17  * @brief Wrapper for GMP types.
18  */
19 
20 #include <math.h>
21 
22 #include "mpqreal.h"
23 
24 namespace soplex
25 {
26 #ifdef SOPLEX_WITH_GMP
27 
28 /// print MpqReal with limited floating point precision
29 std::ostream& operator<<(std::ostream& os, const MpqReal& q)
30 {
31  os << mpf_class(q);
32  return os;
33 }
34 
35 /// cast MpqReal to Real
36 Real get_d(const MpqReal& q)
37 {
38  return q.get_d();
39 }
40 
41 #else
42 
43 /// cast MpqReal to Real
44 Real get_d(const MpqReal& q)
45 {
46  return q;
47 }
48 
49 /// return maximal absolute value
50 MpqReal abs(const MpqReal& q)
51 {
52  return fabs(q);
53 }
54 
55 #endif
56 } // namespace soplex
57 
58 //-----------------------------------------------------------------------------
59 //Emacs Local Variables:
60 //Emacs mode:c++
61 //Emacs c-basic-offset:3
62 //Emacs tab-width:8
63 //Emacs indent-tabs-mode:nil
64 //Emacs End:
65 //-----------------------------------------------------------------------------