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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
require 'test/unit'
class TestBignum < Test::Unit::TestCase
def setup
@verbose = $VERBOSE
$VERBOSE = nil
@fmax = Float::MAX.to_i
@fmax2 = @fmax * 2
@big = (1 << 63) - 1
end
def teardown
$VERBOSE = @verbose
end
def fact(n)
return 1 if n == 0
f = 1
while n>0
f *= n
n -= 1
end
return f
end
def test_bignum
$x = fact(40)
assert_equal($x, $x)
assert_equal($x, fact(40))
assert($x < $x+2)
assert($x > $x-2)
assert_equal(815915283247897734345611269596115894272000000000, $x)
assert_not_equal(815915283247897734345611269596115894272000000001, $x)
assert_equal(815915283247897734345611269596115894272000000001, $x+1)
assert_equal(335367096786357081410764800000, $x/fact(20))
$x = -$x
assert_equal(-815915283247897734345611269596115894272000000000, $x)
assert_equal(2-(2**32), -(2**32-2))
assert_equal(2**32 - 5, (2**32-3)-2)
for i in 1000..1014
assert_equal(2 ** i, 1 << i)
end
n1 = 1 << 1000
for i in 1000..1014
assert_equal(n1, 1 << i)
n1 *= 2
end
n2=n1
for i in 1..10
n1 = n1 / 2
n2 = n2 >> 1
assert_equal(n1, n2)
end
for i in 4000..4096
n1 = 1 << i;
assert_equal(n1-1, (n1**2-1) / (n1+1))
end
end
def test_calc
b = 10**80
a = b * 9 + 7
assert_equal(7, a.modulo(b))
assert_equal(-b + 7, a.modulo(-b))
assert_equal(b + -7, (-a).modulo(b))
assert_equal(-7, (-a).modulo(-b))
assert_equal(7, a.remainder(b))
assert_equal(7, a.remainder(-b))
assert_equal(-7, (-a).remainder(b))
assert_equal(-7, (-a).remainder(-b))
assert_equal(10000000000000000000100000000000000000000, 10**40+10**20)
assert_equal(100000000000000000000, 10**40/10**20)
a = 677330545177305025495135714080
b = 14269972710765292560
assert_equal(0, a % b)
assert_equal(0, -a % b)
end
def shift_test(a)
b = a / (2 ** 32)
c = a >> 32
assert_equal(b, c)
b = a * (2 ** 32)
c = a << 32
assert_equal(b, c)
end
def test_shift
shift_test(-4518325415524767873)
shift_test(-0xfffffffffffffffff)
end
def test_to_s
assert_equal("fvvvvvvvvvvvv" ,18446744073709551615.to_s(32), "[ruby-core:10686]")
assert_equal("g000000000000" ,18446744073709551616.to_s(32), "[ruby-core:10686]")
assert_equal("3w5e11264sgsf" ,18446744073709551615.to_s(36), "[ruby-core:10686]")
assert_equal("3w5e11264sgsg" ,18446744073709551616.to_s(36), "[ruby-core:10686]")
assert_equal("nd075ib45k86f" ,18446744073709551615.to_s(31), "[ruby-core:10686]")
assert_equal("nd075ib45k86g" ,18446744073709551616.to_s(31), "[ruby-core:10686]")
assert_equal("1777777777777777777777" ,18446744073709551615.to_s(8))
assert_equal("-1777777777777777777777" ,-18446744073709551615.to_s(8))
end
T_ZERO = (2**32).coerce(0).first
T_ONE = (2**32).coerce(1).first
T_MONE = (2**32).coerce(-1).first
T31 = 2**31 # 2147483648
T31P = T31 - 1 # 2147483647
T32 = 2**32 # 4294967296
T32P = T32 - 1 # 4294967295
T64 = 2**64 # 18446744073709551616
T64P = T64 - 1 # 18446744073709551615
def test_big_2comp
assert_equal("-4294967296", (~T32P).to_s)
assert_equal("..f00000000", "%x" % -T32)
end
def test_int2inum
assert_equal([T31P], [T31P].pack("I").unpack("I"))
assert_equal([T31P], [T31P].pack("i").unpack("i"))
end
def test_quad_pack
assert_equal([ 1], [ 1].pack("q").unpack("q"))
assert_equal([- 1], [- 1].pack("q").unpack("q"))
assert_equal([ T31P], [ T31P].pack("q").unpack("q"))
assert_equal([-T31P], [-T31P].pack("q").unpack("q"))
assert_equal([ T64P], [ T64P].pack("Q").unpack("Q"))
assert_equal([ 0], [ T64 ].pack("Q").unpack("Q"))
end
def test_str_to_inum
assert_equal(1, " +1".to_i)
assert_equal(-1, " -1".to_i)
assert_equal(0, "++1".to_i)
assert_equal(73, "111".oct)
assert_equal(273, "0x111".oct)
assert_equal(7, "0b111".oct)
assert_equal(73, "0o111".oct)
assert_equal(111, "0d111".oct)
assert_equal(73, "0111".oct)
assert_equal(111, Integer("111"))
assert_equal(13, "111".to_i(3))
assert_raise(ArgumentError) { "111".to_i(37) }
assert_equal(1333, "111".to_i(36))
assert_equal(1057, "111".to_i(32))
assert_equal(0, "00a".to_i)
assert_equal(1, Integer("1 "))
assert_raise(ArgumentError) { Integer("1_") }
assert_raise(ArgumentError) { Integer("1__") }
assert_raise(ArgumentError) { Integer("1_0 x") }
assert_equal(T31P, "1111111111111111111111111111111".to_i(2))
assert_equal(0_2, '0_2'.to_i)
assert_equal(00_2, '00_2'.to_i)
assert_equal(00_02, '00_02'.to_i)
end
def test_to_s2
assert_raise(ArgumentError) { T31P.to_s(37) }
assert_equal("9" * 32768, (10**32768-1).to_s)
assert_raise(RangeError) { Process.wait(1, T64P) }
assert_equal("0", T_ZERO.to_s)
assert_equal("1", T_ONE.to_s)
end
def test_to_f
assert_nothing_raised { T31P.to_f.to_i }
assert_raise(FloatDomainError) { (1024**1024).to_f.to_i }
end
def test_cmp
assert(T31P > 1)
assert(T31P < 2147483648.0)
assert(T31P < T64P)
assert(T64P > T31P)
assert_raise(ArgumentError) { T31P < "foo" }
end
def test_eq
assert(T31P != 1)
assert(T31P == 2147483647.0)
assert(T31P != "foo")
end
def test_eql
assert(T31P.eql?(T31P))
end
def test_convert
assert_equal([255], [T_MONE].pack("C").unpack("C"))
assert_equal([0], [T32].pack("C").unpack("C"))
assert_raise(RangeError) { 0.to_s(T32) }
end
def test_sub
assert_equal(-T31, T32 - (T32 + T31))
x = 2**100
assert_equal(1, (x+2) - (x+1))
assert_equal(-1, (x+1) - (x+2))
assert_equal(0, (2**100) - (2.0**100))
o = Object.new
def o.coerce(x); [2**100+2, x]; end
assert_equal(1, (2**100+1) - o)
end
def test_plus
assert_equal(T32.to_f, T32P + 1.0)
assert_raise(TypeError) { T32 + "foo" }
assert_equal(1267651809154049016125877911552, (2**100) + (2**80))
assert_equal(1267651809154049016125877911552, (2**80) + (2**100))
assert_equal(2**101, (2**100) + (2.0**100))
o = Object.new
def o.coerce(x); [2**80, x]; end
assert_equal(1267651809154049016125877911552, (2**100) + o)
end
def test_minus
assert_equal(T32P.to_f, T32 - 1.0)
assert_raise(TypeError) { T32 - "foo" }
end
def test_mul
assert_equal(T32.to_f, T32 * 1.0)
assert_raise(TypeError) { T32 * "foo" }
o = Object.new
def o.coerce(x); [2**100, x]; end
assert_equal(2**180, (2**80) * o)
end
def test_mul_balance
assert_equal(3**7000, (3**5000) * (3**2000))
end
def test_divrem
assert_equal(0, T32 / T64)
end
def test_div
assert_equal(T32.to_f, T32 / 1.0)
assert_raise(TypeError) { T32 / "foo" }
assert_equal(0x20000000, 0x40000001.div(2.0), "[ruby-dev:34553]")
end
def test_idiv
assert_equal(715827882, 1073741824.div(Rational(3,2)), ' [ruby-dev:34066]')
end
def test_modulo
assert_raise(TypeError) { T32 % "foo" }
end
def test_remainder
assert_equal(0, T32.remainder(1))
assert_raise(TypeError) { T32.remainder("foo") }
end
def test_divmod
assert_equal([T32, 0], T32.divmod(1))
assert_equal([2, 0], T32.divmod(T31))
assert_raise(TypeError) { T32.divmod("foo") }
end
def test_quo
assert_equal(T32.to_f, T32.quo(1))
assert_equal(T32.to_f, T32.quo(1.0))
assert_equal(T32.to_f, T32.quo(T_ONE))
assert_raise(TypeError) { T32.quo("foo") }
assert_equal(1024**1024, (1024**1024).quo(1))
assert_equal(1024**1024, (1024**1024).quo(1.0))
assert_equal(1024**1024*2, (1024**1024*2).quo(1))
inf = 1 / 0.0; nan = inf / inf
assert((1024**1024*2).quo(nan).nan?)
end
def test_pow
assert_equal(1.0, T32 ** 0.0)
assert_equal(1.0 / T32, T32 ** -1)
assert((T32 ** T32).infinite?)
assert((T32 ** (2**30-1)).infinite?)
### rational changes the behavior of Bignum#**
#assert_raise(TypeError) { T32**"foo" }
assert_raise(TypeError, ArgumentError) { T32**"foo" }
end
def test_and
assert_equal(0, T32 & 1)
assert_equal(-T32, (-T32) & (-T31))
assert_equal(0, T32 & T64)
end
def test_or
assert_equal(T32 + 1, T32 | 1)
assert_equal(T32 + T31, T32 | T31)
assert_equal(-T31, (-T32) | (-T31))
assert_equal(T64 + T32, T32 | T64)
end
def test_xor
assert_equal(T32 + 1, T32 ^ 1)
assert_equal(T32 + T31, T32 ^ T31)
assert_equal(T31, (-T32) ^ (-T31))
assert_equal(T64 + T32, T32 ^ T64)
end
def test_shift2
assert_equal(2**33, (2**32) << 1)
assert_equal(2**31, (2**32) << -1)
assert_equal(2**33, (2**32) << 1.0)
assert_equal(2**31, (2**32) << -1.0)
assert_equal(2**33, (2**32) << T_ONE)
assert_equal(2**31, (2**32) << T_MONE)
assert_equal(2**31, (2**32) >> 1)
assert_equal(2**33, (2**32) >> -1)
assert_equal(2**31, (2**32) >> 1.0)
assert_equal(2**33, (2**32) >> -1.0)
assert_equal(2**31, (2**32) >> T_ONE)
assert_equal(2**33, (2**32) >> T_MONE)
assert_equal( 0, (2**32) >> (2**32))
assert_equal(-1, -(2**32) >> (2**32))
assert_equal( 0, (2**32) >> 128)
assert_equal(-1, -(2**32) >> 128)
assert_equal( 0, (2**31) >> 32)
assert_equal(-1, -(2**31) >> 32)
end
def test_aref
assert_equal(0, (2**32)[0])
assert_equal(0, (2**32)[2**32])
assert_equal(0, (2**32)[-(2**32)])
assert_equal(0, (2**32)[T_ZERO])
assert_equal(0, (-(2**64))[0])
assert_equal(1, (-2**256)[256])
end
def test_hash
assert_nothing_raised { T31P.hash }
end
def test_coerce
assert_equal([T64P, T31P], T31P.coerce(T64P))
assert_raise(TypeError) { T31P.coerce(nil) }
end
def test_abs
assert_equal(T31P, (-T31P).abs)
end
def test_size
assert(T31P.size.is_a?(Integer))
end
def test_odd
assert_equal(true, (2**32+1).odd?)
assert_equal(false, (2**32).odd?)
end
def test_even
assert_equal(false, (2**32+1).even?)
assert_equal(true, (2**32).even?)
end
def interrupt
time = Time.now
start_flag = false
end_flag = false
thread = Thread.new do
start_flag = true
yield
end_flag = true
end
sleep 1
thread.raise
thread.join rescue nil
start_flag && !end_flag && Time.now - time < 10
end
def test_interrupt
assert(interrupt { (65536 ** 65536).to_s })
end
def test_too_big_to_s
if (big = 2**31-1).is_a?(Fixnum)
return
end
e = assert_raise(RangeError) {(1 << big).to_s}
assert_match(/too big to convert/, e.message)
end
def test_fix_fdiv
assert_not_equal(0, 1.fdiv(@fmax2))
assert_in_delta(0.5, 1.fdiv(@fmax2) * @fmax, 0.01)
end
def test_big_fdiv
assert_equal(1, @big.fdiv(@big))
assert_not_equal(0, @big.fdiv(@fmax2))
assert_not_equal(0, @fmax2.fdiv(@big))
assert_not_equal(0, @fmax2.fdiv(@fmax2))
assert_in_delta(0.5, @fmax.fdiv(@fmax2), 0.01)
assert_in_delta(1.0, @fmax2.fdiv(@fmax2), 0.01)
end
end
|