-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterval.h
241 lines (186 loc) · 5.62 KB
/
interval.h
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# Copyright (c) 2016 The Caroline authors. All rights reserved.
# Use of this source file is governed by a MIT license that can be found in the
# LICENSE file.
# Author: Glazachev Vladimir <[email protected]>
#ifndef INTERVAL_H
#define INTERVAL_H
#include "precision.h"
#include "value.h"
#include "flint/arb.h"
#include <iostream>
/*
This file contains C++ wrapper of Arb library arb_t type for arbitary
precision real interval representation.
Now implemented only arithmetical and comparision operations.
*/
namespace interval {
// Class to work with interval values.
class ArbInterval {
public:
// Constructors.
ArbInterval() {
arb_init(data_);
arb_zero(data_);
}
ArbInterval(double value, double rad)
: ArbInterval() {
arb_set_d(data_, value);
mag_set_d(arb_radref(data_), rad);
}
ArbInterval(double value)
: ArbInterval() {
arb_set_d(data_, value);
}
ArbInterval(const ArbInterval& other)
: ArbInterval() {
arb_set(data_, other.data_);
}
ArbInterval(const Value& value)
: ArbInterval() {
arb_set_arf(data_, value.data_);
}
ArbInterval(const Value& value, const Value& rad)
: ArbInterval() {
arb_set_arf(data_, value.data_);
arf_get_mag(arb_radref(data_), rad.data_);
}
// Destructor.
~ArbInterval() {
arb_clear(data_);
}
// Swap and assignment.
void swap(ArbInterval& other) {
arb_swap(data_, other.data_);
}
ArbInterval& operator=(const ArbInterval& other) {
ArbInterval temp(other);
swap(temp);
return *this;
}
// Arithmetical operations.
ArbInterval& operator+=(const ArbInterval& x) {
arb_add(data_, data_, x.data_, getPrecision());
return *this;
}
ArbInterval& operator-=(const ArbInterval& x) {
arb_sub(data_, data_, x.data_, getPrecision());
return *this;
}
ArbInterval& operator*=(const ArbInterval& x) {
arb_mul(data_, data_, x.data_, getPrecision());
return *this;
}
ArbInterval& operator*=(int x) {
slong s = x;
arb_mul_si(data_, data_, x, getPrecision());
}
ArbInterval& operator/=(const ArbInterval& x) {
arb_div(data_, data_, x.data_, getPrecision());
return *this;
}
// Sets the interval to its negation.
void neg() {
arb_neg(data_, data_);
}
// Returns value value.
Value val() const {
Value temp;
arf_set(temp.data_, arb_midref(data_));
return temp;
}
// Returns error value.
Value error() const {
Value temp;
arf_set_mag(temp.data_, arb_radref(data_));
return temp;
}
// Returns right bound of absolute value of the interval.
Value abs_ubound() const {
Value temp;
arb_get_abs_ubound_arf(temp.data_, data_, getPrecision());
return temp;
}
// Returns left bound of absolute value of the interval.
Value abs_lbound() const {
Value temp;
arb_get_abs_lbound_arf(temp.data_, data_, getPrecision());
return temp;
}
// Sets the interval to zero.
void zero() {
arb_zero(data_);
}
// Sets the interval to its absolute value.
void abs() {
arb_abs(data_, data_);
}
// Returns data_ value. Need to refactor this.
arb_t& data() { return data_; }
// Comparision functions.
bool eq(const ArbInterval& x) const { return (arb_eq(data_, x.data_)); }
bool ne(const ArbInterval& x) const { return (arb_ne(data_, x.data_)); }
bool lt(const ArbInterval& x) const { return (arb_lt(data_, x.data_)); }
bool le(const ArbInterval& x) const { return (arb_le(data_, x.data_)); }
bool gt(const ArbInterval& x) const { return (arb_gt(data_, x.data_)); }
bool ge(const ArbInterval& x) const { return (arb_ge(data_, x.data_)); }
// Returns true if contains zero; otherwise returns false.
bool contains_zero() const { return arb_contains_zero(data_); }
// Output functions.
friend std::ostream& operator<<(std::ostream& os, const ArbInterval& x);
void print() {
arb_print(data_);
}
private:
arb_t data_;
};
// Comparision functions.
inline bool operator==(const ArbInterval& x, const ArbInterval& y) {
return x.eq(y);
}
inline bool operator!=(const ArbInterval& x, const ArbInterval& y) {
return x.ne(y);
}
inline bool operator<(const ArbInterval& x, const ArbInterval& y) {
return x.lt(y);
}
inline bool operator<=(const ArbInterval& x, const ArbInterval& y) {
return x.le(y);
}
inline bool operator>(const ArbInterval& x, const ArbInterval& y) {
return x.gt(y);
}
inline bool operator>=(const ArbInterval& x, const ArbInterval& y) {
return x.ge(y);
}
// Arithmetic operations.
inline ArbInterval operator+(ArbInterval x, const ArbInterval& y) {
x += y;
return x;
}
inline ArbInterval operator-(ArbInterval x, const ArbInterval& y) {
x -= y;
return x;
}
inline ArbInterval operator*(ArbInterval x, const ArbInterval& y) {
x *= y;
return x;
}
inline ArbInterval operator/(ArbInterval x, const ArbInterval& y) {
x /= y;
return x;
}
inline ArbInterval operator-(ArbInterval x) {
x.neg();
return x;
}
// To stream.
std::ostream& operator<<(std::ostream& os, const ArbInterval& x) {
os << arb_get_str(x.data_, 10, ARB_STR_MORE);
return os;
}
// Outer swap function.
void swap(ArbInterval& x, ArbInterval& y) {
x.swap(y);
}
} // interval
#endif // INTERVAL_H