Commit f9a96d00 by Krishnan Sanjay

Update bloom.py

parent 91f90cdb
Showing with 1 additions and 1 deletions
......@@ -13,7 +13,7 @@ class Bloom(object):
independent hash functions.
'''
self.array = array.array('B', [0] * 10000)
self.array = array.array('B', [0] * m)
self.hashes = self.generate_hashes(m,k,seed)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment