mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
458 B
27 lines
458 B
11 years ago
|
#!/usr/bin/python
|
||
|
|
||
|
import math
|
||
|
|
||
|
limit = (1 << 32) - 1
|
||
|
for i in xrange(65536 + 10):
|
||
|
if i == 0:
|
||
|
continue
|
||
|
|
||
|
temp = float(1 << 32) / float(i)
|
||
|
approx1 = int(math.floor(temp) - 3)
|
||
|
approx2 = int(math.floor(temp + 3))
|
||
|
for j in xrange(approx1, approx2 + 1):
|
||
|
if i*j >= (1 << 32):
|
||
|
exact = True
|
||
|
else:
|
||
|
exact = False
|
||
|
|
||
|
if i > limit / j:
|
||
|
check = True
|
||
|
else:
|
||
|
check = False
|
||
|
|
||
|
#print(i, j, exact, check)
|
||
|
if exact != check:
|
||
|
print('inexact', i, j)
|