File: rounded_transc.hpp

package info (click to toggle)
gecode-snapshot 6.2.0%2Bgit20240207-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 35,308 kB
  • sloc: cpp: 475,516; perl: 2,077; makefile: 1,816; sh: 198
file content (140 lines) | stat: -rw-r--r-- 5,879 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* Boost interval/rounded_transc.hpp template implementation file
 *
 * Copyright 2002-2003 Hervé Brönnimann, Guillaume Melquiond, Sylvain Pion
 *
 * Distributed under the Boost Software License, Version 1.0.
 * (See accompanying file LICENSE_1_0.txt or
 * copy at http://www.boost.org/LICENSE_1_0.txt)
 */

#ifndef GECODE_BOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP
#define GECODE_BOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP

#include <gecode/third-party/boost/numeric/interval/rounding.hpp>
#include <gecode/third-party/boost/numeric/interval/detail/bugs.hpp>
#include <gecode/third-party/boost/config/no_tr1/cmath.hpp>

namespace gecode_boost {
namespace numeric {
namespace interval_lib {

template<class T, class Rounding>
struct rounded_transc_exact: Rounding
{
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); return f(x); } \
    T f##_up  (const T& x) { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); return f(x); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(exp)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(log)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(sin)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(cos)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(tan)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(asin)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(acos)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(atan)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(sinh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(cosh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(tanh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); return f(x); } \
    T f##_up  (const T& x) { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); return f(x); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(asinh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(acosh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(atanh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
};
  
template<class T, class Rounding>
struct rounded_transc_std: Rounding
{
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); \
      this->downward(); return this->force_rounding(f(x)); } \
    T f##_up  (const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); \
      this->upward(); return this->force_rounding(f(x)); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(exp)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(log)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(sin)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(cos)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(tan)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(asin)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(acos)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(atan)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(sinh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(cosh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(tanh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
      this->downward(); return this->force_rounding(f(x)); } \
    T f##_up  (const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
      this->upward(); return this->force_rounding(f(x)); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(asinh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(acosh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(atanh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
};

template<class T, class Rounding>
struct rounded_transc_opp: Rounding
{
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); \
      this->downward(); T y = this->force_rounding(f(x)); \
      this->upward(); return y; } \
    T f##_up  (const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); \
      return this->force_rounding(f(x)); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(exp)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(log)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(cos)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(acos)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(cosh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); \
      return -this->force_rounding(-f(x)); } \
    T f##_up  (const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_math(f); \
      return this->force_rounding(f(x)); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(sin)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(tan)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(asin)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(atan)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(sinh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(tanh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
      this->downward(); T y = this->force_rounding(f(x)); \
      this->upward(); return y; } \
    T f##_up  (const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
      return this->force_rounding(f(x)); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(asinh)
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(atanh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
# define GECODE_BOOST_NUMERIC_INTERVAL_new_func(f) \
    T f##_down(const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
      return -this->force_rounding(-f(x)); } \
    T f##_up  (const T& x) \
    { GECODE_BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
      return this->force_rounding(f(x)); }
  GECODE_BOOST_NUMERIC_INTERVAL_new_func(acosh)
# undef GECODE_BOOST_NUMERIC_INTERVAL_new_func
};
  
} // namespace interval_lib
} // namespace numeric
} // namespace gecode_boost

#endif // GECODE_BOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP