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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
Index: doc/gmp.texi
===================================================================
RCS file: /home/cvsfiles/gmp42/doc/gmp.texi,v
retrieving revision 1.25
retrieving revision 1.28
diff -p -2 -r1.25 -r1.28
*** doc/gmp.texi 18 Sep 2008 15:36:28 -0000 1.25
--- doc/gmp.texi 8 Nov 2008 23:38:20 -0000 1.28
*************** equal, zero otherwise. I.e., test if @v
*** 4850,4856 ****
equal.
! Caution: Currently only whole limbs are compared, and only in an exact
! fashion. In the future values like 1000 and 0111 may be considered the same
! to 3 bits (on the basis that their difference is that small).
@end deftypefun
--- 4850,4859 ----
equal.
! Caution 1: All version of GMP up to version 4.2.4 compared just whole limbs,
! meaning sometimes more than @var{op3} bits, sometimes fewer.
!
! Caution 2: This function will consider XXX11...111 and XX100...000 different,
! even if ... is replaced by a semi-infinite number of bits. Such numbers are
! really just one ulp off, and should be considered equal.
@end deftypefun
Index: mpf/eq.c
===================================================================
RCS file: /home/cvsfiles/gmp42/mpf/eq.c,v
retrieving revision 1.2
retrieving revision 1.5
diff -p -2 -r1.2 -r1.5
*** mpf/eq.c 30 Aug 2007 18:19:40 -0000 1.2
--- mpf/eq.c 8 Nov 2008 23:31:18 -0000 1.5
***************
*** 1,5 ****
/* mpf_eq -- Compare two floats up to a specified bit #.
! Copyright 1993, 1995, 1996, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
--- 1,5 ----
/* mpf_eq -- Compare two floats up to a specified bit #.
! Copyright 1993, 1995, 1996, 2001, 2002, 2008 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
*************** along with the GNU MP Library. If not,
*** 20,23 ****
--- 20,24 ----
#include "gmp.h"
#include "gmp-impl.h"
+ #include "longlong.h"
int
*************** mpf_eq (mpf_srcptr u, mpf_srcptr v, unsi
*** 27,30 ****
--- 28,33 ----
mp_size_t usize, vsize, size, i;
mp_exp_t uexp, vexp;
+ mp_limb_t diff;
+ int cnt;
uexp = u->_mp_exp;
*************** mpf_eq (mpf_srcptr u, mpf_srcptr v, unsi
*** 54,61 ****
/* 2. Are the exponents different? */
! if (uexp > vexp)
! return 0; /* ??? handle (uexp = vexp + 1) */
! if (vexp > uexp)
! return 0; /* ??? handle (vexp = uexp + 1) */
usize = ABS (usize);
--- 57,62 ----
/* 2. Are the exponents different? */
! if (uexp != vexp)
! return 0;
usize = ABS (usize);
*************** mpf_eq (mpf_srcptr u, mpf_srcptr v, unsi
*** 94,104 ****
}
! if (size > (n_bits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS)
! size = (n_bits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS;
! up += usize - size;
! vp += vsize - size;
! for (i = size - 1; i >= 0; i--)
{
if (up[i] != vp[i])
--- 95,113 ----
}
! up += usize; /* point just above most significant limb */
! vp += vsize; /* point just above most significant limb */
! count_leading_zeros (cnt, up[-1]);
! if ((vp[-1] >> (GMP_LIMB_BITS - 1 - cnt)) != 1)
! return 0; /* msb positions different */
! n_bits += cnt - GMP_NAIL_BITS;
!
! size = MIN (size, (n_bits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS);
!
! up -= size; /* point at least significant relevant limb */
! vp -= size; /* point at least significant relevant limb */
!
! for (i = size - 1; i > 0; i--)
{
if (up[i] != vp[i])
*************** mpf_eq (mpf_srcptr u, mpf_srcptr v, unsi
*** 106,109 ****
}
! return 1;
}
--- 115,119 ----
}
! diff = (up[0] ^ vp[0]) >> GMP_NUMB_BITS - 1 - (n_bits - 1) % GMP_NUMB_BITS;
! return diff == 0;
}
Index: tests/cxx/t-prec.cc
===================================================================
RCS file: /home/cvsfiles/gmp42/tests/cxx/t-prec.cc,v
retrieving revision 1.4
retrieving revision 1.5
diff -p -2 -r1.4 -r1.5
*** tests/cxx/t-prec.cc 30 Aug 2007 23:14:40 -0000 1.4
--- tests/cxx/t-prec.cc 8 Nov 2008 23:33:02 -0000 1.5
***************
*** 1,5 ****
/* Test precision of mpf_class expressions.
! Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
--- 1,5 ----
/* Test precision of mpf_class expressions.
! Copyright 2001, 2002, 2003, 2008 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
*************** check_mpf (void)
*** 62,66 ****
ASSERT_ALWAYS_PREC
(g, "0.11111 11111 11111 11111 11111 11111 11111 11111 11111 11111"
! " 11111 11111 11111 11111 11111 11", very_large_prec);
}
{
--- 62,66 ----
ASSERT_ALWAYS_PREC
(g, "0.11111 11111 11111 11111 11111 11111 11111 11111 11111 11111"
! " 11111 11111 11111 11111 11111 111", very_large_prec);
}
{
*************** check_mpf (void)
*** 70,74 ****
ASSERT_ALWAYS_PREC
(g, "0.06666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 66666 66666 66666 66666 67", very_large_prec);
}
--- 70,74 ----
ASSERT_ALWAYS_PREC
(g, "0.06666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 66666 66666 66666 66666 667", very_large_prec);
}
*************** check_mpf (void)
*** 95,99 ****
ASSERT_ALWAYS_PREC
(i, "15.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333"
! " 33333 33333 33333 333", very_large_prec);
}
{
--- 95,99 ----
ASSERT_ALWAYS_PREC
(i, "15.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333"
! " 33333 33333 33333 33333 33333 3", very_large_prec);
}
{
*************** check_mpf (void)
*** 102,106 ****
ASSERT_ALWAYS_PREC
(g, "-1.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333"
! " 33333 33333 33333 333", very_large_prec);
}
{
--- 102,106 ----
ASSERT_ALWAYS_PREC
(g, "-1.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333"
! " 33333 33333 33333 33333 33333 33", very_large_prec);
}
{
*************** check_mpf (void)
*** 118,122 ****
ASSERT_ALWAYS_PREC
(g, "1.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 66666 66666 667", very_large_prec);
}
--- 118,122 ----
ASSERT_ALWAYS_PREC
(g, "1.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 66666 66666 66666 66666 67", very_large_prec);
}
*************** check_mpf (void)
*** 143,147 ****
g = mpf_class(1 / f);
ASSERT_ALWAYS_PREC
! (g, "0.11111 11111 11111 11111 11111 11111 11111 111", medium_prec);
}
{
--- 143,147 ----
g = mpf_class(1 / f);
ASSERT_ALWAYS_PREC
! (g, "0.11111 11111 11111 11111 11111 11111 11111 1111", medium_prec);
}
{
*************** check_mpf (void)
*** 151,155 ****
ASSERT_ALWAYS_PREC
(g, "0.06666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 667", large_prec);
}
--- 151,155 ----
ASSERT_ALWAYS_PREC
(g, "0.06666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 6667", large_prec);
}
*************** check_mpf (void)
*** 159,163 ****
h = mpf_class(f / g + 1, large_prec);
ASSERT_ALWAYS_PREC
! (h, "1.33333 33333 33333 33333 33333 33333 33333 33333 33333 3333",
large_prec);
}
--- 159,164 ----
h = mpf_class(f / g + 1, large_prec);
ASSERT_ALWAYS_PREC
! (h, "1.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333"
! " 33333 333",
large_prec);
}
*************** check_mpf (void)
*** 171,175 ****
ASSERT_ALWAYS_PREC
(g, "2.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 66666 66666 667", very_large_prec);
}
--- 172,176 ----
ASSERT_ALWAYS_PREC
(g, "2.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 66666 66666 66666 66666 67", very_large_prec);
}
*************** check_mpf (void)
*** 180,184 ****
g = mpf_class(f - q, large_prec);
ASSERT_ALWAYS_PREC
! (g, "2.66666 66666 66666 66666 66666 66666 66666 66666 66666 6667",
large_prec);
}
--- 181,186 ----
g = mpf_class(f - q, large_prec);
ASSERT_ALWAYS_PREC
! (g, "2.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666"
! " 66666 667",
large_prec);
}
*************** check_mpf (void)
*** 189,193 ****
g = mpf_class(f - q);
ASSERT_ALWAYS_PREC
! (g, "2.66666 66666 66666 66666 66666 6667", medium_prec);
}
{
--- 191,195 ----
g = mpf_class(f - q);
ASSERT_ALWAYS_PREC
! (g, "2.66666 66666 66666 66666 66666 66666 66666 667", medium_prec);
}
{
*************** check_mpf (void)
*** 197,201 ****
g = mpf_class(f + q);
ASSERT_ALWAYS_PREC
! (g, "15.33333 33333 33333 33333 33333 33333 33333 33333 33333 3333",
large_prec);
}
--- 199,204 ----
g = mpf_class(f + q);
ASSERT_ALWAYS_PREC
! (g, "15.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333"
! " 33333 33",
large_prec);
}
|