Compare commits
1 Commits
v0.6
...
omkar1117/
Author | SHA1 | Date | |
---|---|---|---|
|
ac7a6f750e |
|
@ -19,5 +19,5 @@ for filename in matches:
|
||||||
if 'win' in sys.platform:
|
if 'win' in sys.platform:
|
||||||
ctypes.windll.user32.MessageBoxA(0, traceback.format_exc(), "Exception in " + filename, 1)
|
ctypes.windll.user32.MessageBoxA(0, traceback.format_exc(), "Exception in " + filename, 1)
|
||||||
else:
|
else:
|
||||||
print "Exception in %s: %s" % (filename, traceback.format_exc())
|
print ("Exception in %s: %s" % (filename, traceback.format_exc()))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
|
@ -52,15 +52,12 @@ for row in cur.fetchall():
|
||||||
# f.close()
|
# f.close()
|
||||||
|
|
||||||
|
|
||||||
print "Item count: %i" % (itemcount)
|
print("Item count: %i" % itemcount)
|
||||||
print "Raw length: %i" % (rawlen)
|
print("Raw length: %i" % rawlen)
|
||||||
print "Bloom filter 1 length: %i, reduction to: %.2f%%" % \
|
print("Bloom filter 1 length: %i, reduction to: %.2f%%" % bf1.bitarray.buffer_info()[1],
|
||||||
(bf1.bitarray.buffer_info()[1],
|
|
||||||
100.0 * bf1.bitarray.buffer_info()[1] / rawlen)
|
100.0 * bf1.bitarray.buffer_info()[1] / rawlen)
|
||||||
print "Bloom filter 1 capacity: %i and error rate: %.3f%%" % (bf1.capacity, 100.0 * bf1.error_rate)
|
print("Bloom filter 1 capacity: %i and error rate: %.3f%%" % bf1.capacity, 100.0 * bf1.error_rate)
|
||||||
print "Bloom filter 1 took %.2fs" % (bf1time)
|
print("Bloom filter 1 took %.2fs" % bf1time)
|
||||||
print "Bloom filter 2 length: %i, reduction to: %.3f%%" % \
|
print("Bloom filter 2 length: %i, reduction to: %.3f%%" % bf2.num_bits / 8, 100.0 * bf2.num_bits / 8 / rawlen)
|
||||||
(bf2.num_bits / 8,
|
print("Bloom filter 2 capacity: %i and error rate: %.3f%%" % bf2.capacity, 100.0 * bf2.error_rate)
|
||||||
100.0 * bf2.num_bits / 8 / rawlen)
|
print("Bloom filter 2 took %.2fs" % bf2time)
|
||||||
print "Bloom filter 2 capacity: %i and error rate: %.3f%%" % (bf2.capacity, 100.0 * bf2.error_rate)
|
|
||||||
print "Bloom filter 2 took %.2fs" % (bf2time)
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user